This project builds the OWASP Benchmark vulnerable web app as a container image and publishes it to Docker Hub every Sunday.
The OWASP Benchmark Project is a Java test suite designed to evaluate the accuracy, coverage, and speed of automated software vulnerability detection tools. Without the ability to measure these tools, it is difficult to understand their strengths and weaknesses, and compare them to each other.
Pull the latest version of the OWASP Benchmark container image
docker pull kaakaww/owasp-benchmark
Start OWASP Benchmark in the foreground. It may take a minute to start listening for connections.
docker run --name owasp-benchmark --rm -d -t -p 8443:8443 kaakaww/owasp-benchmark
Open https://localhost:8443/benchmark/ in your browser.
open https://localhost:8443/benchmark/
Shut OWASP Benchmark down.
docker stop owasp-benchmark
To build the OWASP Benchmark container image from the latest sources, first clone this repository and cd
into it.
git clone https://github.com/kaakaww/owasp-benchmark-docker
cd owasp-benchmark-docker
Now build and run it. The service may take a minute to start listening on port 8443.
docker build . -t owasp-benchmark
docker run --rm -t -p 8443:8443 owasp-benchmark