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.
Scan by using different source IP.
SYN-Scan from DNS port.
SYN-Scan of a filtered port.
References
Last updated