Git Product home page Git Product logo

zvuldrill's Introduction

ZVulDrill

Web漏洞演练平台 包含的漏洞有

  • SQL注入
  • XSS
  • CSRF
  • 文件包含
  • 后台弱口令
  • 文件上传
  • 目录遍历
  • 权限跨越

PS: 数据库需要手动添加,在sys文件夹中
根目录在sys/config.php中设置

Setup on Ubuntu 14.04

You can execute the file setup.sh directly. Or manually enter the following commands:

sudo apt-get update
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password test123'
sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password test123'
sudo apt-get -y install mysql-server apache2 libapache2-mod-auth-mysql php5-mysql php5
sudo cp -r /vagrant/* /var/www/

sed -i "s/password = '';/password='test123';/g" /var/www/sys/config.php
# No need to change the basedir we just delete it and serve from root
sed -i "/basedir/d" /var/www/sys/config.php

# Change apache directory from /var/www/html to /var/www
sudo sed -i "s|www/html|www|g" /etc/apache2/sites-enabled/000-default.conf

sudo mysql -u root -ptest123 -e "CREATE DATABASE zvuldrill;"
sudo mysql -u root -ptest123 --database=zvuldrill < /vagrant/sys/zvuldrill.sql

Automatic setup using vagrant

Please note that you first need to install vagrant, which is an awesome tool for easily setting up environments. After you have installed vagrant you can automatically download and setup ZVulldrill with the following commands.

git clone https://github.com/710leo/ZVulDrill.git
cd ZVulDrill
vagrant up

After vagrant finishes, you can access ZVulDrill via http://192.168.33.10

For reference please see the Vagrantfile in the repo and vagrantup.com.

zvuldrill's People

Contributors

710leo avatar samos123 avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.