- Download Burp Suite Community Edition - PortSwigger
- Request a free trial for Burp Suite Professional - PortSwigger (If you want to a 30 day free trial of Burp Pro signup a few days before class because their process is not instant)
- Owasp Zap Downloads · zaproxy/zaproxy Wiki · GitHub
git clone git@github.com:danielmiessler/SecLists.gitLinkFinder: A python script that finds endpoints in JavaScript files
$ git clone https://github.com/GerbenJavado/LinkFinder.git
$ cd LinkFinder
$ python setup.py installSqlmap
or
brew install sqlmap
We will have an AWS environment spun up for each lab but we cannot guarantee that it will be available. We have run into issues before where requests were blocked by the conference network to AWS. Therefore, we recommend running the labs locally. This will require Docker.
Docker is the easiest way to run these labs but not the only way.
sudo docker run --rm -it -p 80:80 cyrivs89/web-dvwshttps://github.com/snoopysecurity/dvws
docker pull bkimminich/juice-shop
docker run --rm -p 3000:3000 bkimminich/juice-shopRequires Maven and Java 1.8 3 options to run locally
- Use pre-built jar
java -jar graphql-poc.jar- Run from repo
git clone git@github.com:righettod/poc-graphql.git
cd poc-graphql
mvn spring-boot:run- build your own jar
git clone git@github.com:righettod/poc-graphql.git
cd poc-graphql
mvn package
java -jar graphql-poc.jar