Nmap
Nmap is a free and open source tool used for vulnerability checking, port scanning and, of course, network mapping.
Target
nmap 10.10.10.10nmap 10.10.10.1-20nmap 10.10.10.0/24nmap -iL list-of-ips.txtPorts Scan
nmap -p 22 10.10.10.10nmap -p 1-100 10.10.10.10nmap -F 10.10.10.10nmap -p- 10.10.10.10Scan Types
nmap -Pn 10.10.10.10nmap -sT 10.10.10.10nmap -sS 10.10.10.10nmap -sU 10.10.10.10Services & OS Detection
nmap -A 10.10.10.10nmap -sC 10.10.10.10nmap -sV 10.10.10.10Output Formats
nmap -oN target.txt 10.10.10.10nmap -oX target.xml 10.10.10.10nmap -oG target.txt 10.10.10.10nmap -oA nmap/target 10.10.10.10Scripts
nmap -sC -sV 10.10.10.10nmap --script-help=ssl-heartbleednmap -–script=ssl-heartbleed.nse 10.10.10.10nmap --script=smb* 10.10.10.10IPS / IDS Evasion
Scan by using Decoys.
nmap 10.10.10.10 -p 80 -sS -Pn -n --disable-arp-ping --packet-trace -D RND:5Scan by using different source IP.
nmap 10.10.10.10 -n -Pn -p 445 -O -S 10.129.2.200 -e tun0SYN-Scan from DNS port.
nmap 10.10.10.10 -p 50000 -sS -Pn -n --disable-arp-ping --packet-trace --source-port 53SYN-Scan of a filtered port.
nmap 10.10.10.10 -p 50000 -sS -Pn -n --disable-arp-ping --packet-traceReferences
Last updated