A Dockerized version of the tool Nmap
docker build -t nmap .
Build the container (locally)
docker run -it nmap <arguments> <target>
Run nmap with arguments
docker run -it sneakerhax/nmap <arguments> <targets>
Start image pulled from Docker Hub and run Nmap with target
docker run -it --entrypoint=bash sneakerhax\nmap
┌──(root💀f15991a37109)-[/]
└─# nse smb
smb-security-mode.nse
smb2-vuln-uptime.nse
smb-print-text.nse
---truncated---
Search for nse modules containing the string smb
docker-slim build --target nmap:latest --http-probe=false --exec "nmap --script=http-title scanme.nmap.org"
command to build a smaller image with DockerSlim from already built nmap image (will generate nmap.slim image)
Content type
Image
Digest
sha256:3e5e478b8…
Size
105 MB
Last updated
2 months ago
docker pull sneakerhax/nmap