Another docker based nmap.
For instance, to get all open ports in all your local network (change net at the end of command to yours):
docker run --rm ociotec/nmap nmap -p- 192.168.1.0/24
Same command but with XML output (readable by browser due to webxml extension):
docker run --rm --volume $(pwd):/tmp/report ociotec/nmap nmap -p- -oX /tmp/report/report.xml --webxml 192.168.1.0/24
Content type
Image
Digest
Size
8.9 MB
Last updated
almost 7 years ago
docker pull ociotec/nmap