Skip to content

A collection of simple vulnerable web apps for testing vulnerability scanners or educational purposes.

License

Notifications You must be signed in to change notification settings

ronin-rb/vuln-apps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vuln-apps

Description

A collection of simple vulnerable web apps for testing vulnerability scanners or educational purposes.

Apps

  • cmdi/
    • php/ - A PHP app demonstrating various types of Command Injection.
  • lfi/
    • php/ - A PHP app demonstrating various types of Local File Inclusion (LFI).
  • rfi/
    • php/ - A PHP app demonstrating Remote File Inclusion (RFI).
    • jsp/ - A JSP/Tomcat app demonstrating Remote File Inclusion (RFI).
  • open_redirect/
    • php/ - A PHP app demonstrating Open Redirect vulnerabilities.

Contributing

New Apps

  • Must exist within a directory.
  • Must contain a Dockerfile to build the app as a docker image.
  • Must contain a docker-compose.yml file for quickly starting up the docker image.
  • Must contain a Makefile for building the docker image and running either the app or the docker image.
  • Must contain an index.html page which describes the vulnerability and links to the vulnerable webpage.
  • Must contain a README.md file containing basic instructions on how to run and view the web app.