vulstudy靶机搭建(kali)

安装

安装docker

apt-get install docker.io  //# 安装docker
pip install docker-compose  //# 安装docker-compose
git clone https://github.com/c0ny1/vulstudy.git //# 下载vulstudy项目

使用

使用主要分两种:单独运行一个漏洞平台,同时运行多个漏洞平台

运行单个漏洞平台

cd到需要运行的漏洞目录下运行命令

cd vulstudy/漏洞目录
docker-compose up -d #启动容器
docker-compose stop #停止容器

运行所有漏洞平台

cd vulstudy
docker-compose up -d #启动容器
docker-compose stop #停止容器

参考文献

 https://cloud.tencent.com/developer/article/1484235

原文地址:https://www.cnblogs.com/lijingrong/p/13723817.html