2 Star 1 Fork 1

ltfafei/shell_script

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Deploy_Vulhub-docker.sh 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
ltfafei 提交于 2021-03-07 10:23 . Update script
#!/bin/bash
# Author:afei
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#判断并安装docker
if which docker; then
docker --version
else
echo "请先安装docker!"
read -p "是否进行一键安装docker(y|n):" X
if [ $X == y -o $X == Y ]; then
wget https://gitee.com/afei00123/shell_script/blob/master/Install_docker\(all\).sh
sh Install_docker\(all\).sh
docker --version
else
echo "安装docker失败!"
fi
fi
if which python3; then
python3 -V
else
apt-get install python3 -y
python3 -V
fi
if which pip3; then
pip3 -V
else
#apt install python3-pip
curl -s https://bootstrap.pypa.io/get-pip.py | python3
pip3 -V
fi
#部署Vulhub-docker环境
systemctl start docker && systemctl status docker
pip3 install docker-compose
docker-compose -v
#git clone https://github.com/vulhub/vulhub.git
git clone https://gitee.com/afei00123/vulhub.git
#进入某个漏洞环境进行构建
cd vulhub/flask/ssti
#docker-compose build
docker-compose up -d
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/afei00123/shell_script.git
git@gitee.com:afei00123/shell_script.git
afei00123
shell_script
shell_script
master

搜索帮助