networkstatic/nmap

By networkstatic

Updated over 2 years ago

Dockerized Nmap Port Scanner on Debian

Image

100K+

Dockerfile Collection

Dockerfiles can be found at nerdalert/Dockerfiles

networkstatic/nmap

Nmap is a perenial favorite for security fuzzing.

A couple of example usages:

  • Run the nmap --help to view port scanning options.
docker run -it --rm networkstatic/nmap --help
  • Scan for open ssh (tcp/22) ports on a range of IPs
docker run -it --rm networkstatic/nmap -sT 192.168.1.1-100 -p 22

Docker Pull Command

docker pull networkstatic/nmap