Web security: VulApps shooting range construction. (Quickly build various vulnerability environments and security tool environments)

Web security: VulApps shooting range construction.

Vulapp collects various vulnerability environments. For the convenience of use, it adopts the form of Dockerfile uniformly, and also collects security tool environments.


Table of contents:

Web security: VulApps shooting range construction.

Download Docker install:

Download the vulapps range builder:

Enable vulapps range:


Download Docker install:

sudo apt-get install -y docker-compose    

vim /etc/docker/daemon.json                // 配置加速器.

{"registry-mirrors":[
 "https://dockerhub.azk8s.cn",
 "https://reg-mirror.qiniu.com",
 "https://1rqfztnd.mirror.aliyuncs.com"
 ]
}

使加速器生效:

(1)重新加载配置文件

systemctl daemon-reload

(2)重启docker

systemctl restart docker


Download the vulapps range builder:

docker pull medicean/vulapps:s_shiro_1            // 下载镜像.


Enable vulapps range:

docker run -d -p 80:8080 medicean/vulapps:s_shiro_1    

进行浏览:主机的 80 端口.

     

     

    

Reference link: Use Docker in kali to build vulhub shooting range and vulapps shooting range (for beginners)

Guess you like

Origin blog.csdn.net/weixin_54977781/article/details/131244271