Skip to content

Purposely vulnerable Java application to help lead secure coding workshops

License

Notifications You must be signed in to change notification settings

ScaleSec/vulnado

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6a7be5f · Feb 2, 2023

History

28 Commits
Feb 2, 2023
Feb 13, 2019
Feb 21, 2019
Feb 21, 2019
Feb 15, 2019
May 10, 2019
Feb 21, 2019
May 10, 2019
Feb 15, 2019
Jun 2, 2020
May 10, 2019
Oct 25, 2022
Oct 13, 2022
Feb 21, 2019
Feb 13, 2019
Feb 13, 2019
Feb 21, 2019

Repository files navigation

Vulnado - Intentionally Vulnerable Java Application

This application and exercises will take you through some of the OWASP top 10 Vulnerabilities and how to prevent them.

Up and running

  1. Install Docker for MacOS or Windows. You'll need to create a Docker account if you don't already have one.
  2. git clone git://github.com/ScaleSec/vulnado
  3. cd vulnado
  4. docker-compose up
  5. Open a browser and navigate to the client to make sure it's working: http://localhost:1337
  6. Then back in your terminal verify you have connection to your API server: nc -vz localhost 8080

Architecture

The docker network created by docker-compose maps pretty well to a multi-tier architecture where a web server is publicly available and there are other network resources like a database and internal site that are not publicly available.

Exercises