Docker Usage

Use with base image

# pull latest image
docker pull j3ssie/jaeles

# do real scan here
docker run j3ssie/jaeles scan -s '<selector>' -u http://example.com

Use with your custom signatures

Assume your signatures is on /tmp/host/pro-signatures on your host machine.

# test if you can select signatures fine
docker run -v /tmp/host/pro-signatures:/tmp/pro-signatures j3ssie/jaeles config select -s /tmp/pro-signatures/sensitive/

# do real scan here
docker run -v /tmp/host/pro-signatures:/tmp/pro-signatures j3ssie/jaeles scan -s /tmp/pro-signatures/sensitive/ -u http://example.com