• Stars
    star
    184
  • Rank 208,431 (Top 5 %)
  • Language
    PHP
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

该项目是利用docker技术创建的有漏洞的cms环境集合,可以进行练习

简介

该项目可以利用docker和docker-compose轻松的搭建漏洞环境

docker安装

ubuntu16.06


# 安装pip
curl -s https://bootstrap.pypa.io/get-pip.py | python3

# 安装最新版docker
curl -s https://get.docker.com/ | sh

# 启动docker服务
service docker start

# 安装compose
pip install docker-compose 

macOS

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

# 安装docker
brew cask install docker