kali+docker+vulhub快速安装指南
安装dockerKali 自带源安装:
root@kali:~# apt-get update && apt-get install docker.io
查看版本:
设置开机自启:
root@kali:~# service docker start
root@kali:~# update-rc.d docker enable
安装pip(python包管理工具): root@kali:~#curl -s https://bootstrap.pypa.io/get-pip.py| python3
安装docker-compose:
Compose 是 Docker 容器进行编排的工具,定义和运行多容器的应用,可以一条命令启动多个容器,使用Docker Compose不再需要使用shell脚本来启动容器。
root@kali:~# pip install docker-compose
下载vulhubVulhub是一个面向大众的开源漏洞靶场,无需docker知识,简单执行两条命令即可编译、运行一个完整的漏洞靶场镜像。旨在让漏洞复现变得更加简单,让安全研究 ...
github+hexo+butterfly搭建及美化
搭建github博客创建仓库新建一个名为你的用户名.github.io的仓库,比如说,如果你的github用户名是fiveagent,那么你就新建fiveagent.github.io的仓库(必须是你的用户名,其它名称无效),将来你的网站访问地址就是 http://fiveagent.github.io 了,是不是很方便?
由此可见,每一个github账户最多只能创建一个这样可以直接使用域名访问的仓库。
几个注意的地方:
注册的邮箱一定要验证,否则不会成功;
仓库名字必须是:username.github.io,其中username是你的用户名;
本地搭建hexo+butterflynodejs:下载 点击这里快捷电梯
git:下载 点击这里快捷电梯
自己找一个位置创建目录作为你自己博客的根目录
在这个目录下鼠标右击->选择”Git Bash Here”后进入git的bash界面
输入如下命令
1234567891011121314//第一条 这是安装hexo的基础框架npm install -g hexo//第二条 这是初始化hexo框架 这个可能会比较慢hexo ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment