Enumerate Network

Quick scan

nmap -sn -Pn 192.168.56.10-12,22-24
-sn: Ping Scan - disable port scan

Indepth Scan

nmap -p- -sV -Pn 192.168.56.10-12,22-24 -oA Full_Scan
-sV enumerate the version
-Pn don’t do ping scan and scan all ip
-p- scan the 65535 ports instead of the default nmap 1000 top ports by default
-oA write results in the 3 available format (nmap classic, grep format, xml format)

Last updated