Dockerfile for dotdotpwn - The Directory Traversal Fuzzer
docker build .
docker run --rm -it <IMAGE-ID>
docker run --rm -it $(docker build -q .)
- Assuming the other container has a --name of
container
and a --network ofnetwork
docker run --rm -it --network network --name dotdotpwn $(docker build -q .) -m http -h container
- dotdotpwn saves reports to a directory called
Reports
- You have to create a directory and mount it into the docker container to store the report on the host machine
mkdir Reports
docker run --rm -it --network network --name dotdotpwn -v $(pwd)/Reports:/dotdotpwn/Reports $(docker build -q .) -m http -h container