Docker image for masscan tool
69
A dockerfile that produces a docker image of the impressive masscan tool. Full details and instructions available here
usage:
Run in interactive mode
docker run -it akacodemonkey/masscan:latest 10.0.0.0/8 -p80 --banners --source-port 61000
Run with conf file
docker run -it -v ${PWD}:/app akacodemonkey/masscan:latest -c /app/scan.conf
Run with conf file in detached mode
docker run -d -v ${PWD}:/app akacodemonkey/masscan:latest -c /app/scan.conf
Minimal config file
#targets
range = 192.178.0.0/28
ports = 1-65535
#scan config
rate = 20000
open-only=true
# output format - note json doesn't append the closing array ]
output-format = json
output-filename = /app/production.json
Content type
Image
Digest
sha256:4d7cbf176…
Size
79.6 MB
Last updated
3 months ago
docker pull akacodemonkey/masscan