Extreme Hacking: Nmap Cheat Sheet
Ethical Hacking Institute Course in Pune-India
Extreme Hacking | Sadik Shaikh
BASIC SCANNING TECHNIQUES
Goal
Command
Example
Scan a Single Target
nmap
nmap 192.168.0.1
Scan Multiple Targets
nmap
nmap 192.168.0.1 192.168.0.2
Scan a List of Targets
nmap -iL
nmap -iL targets.txt
Scan a Range of Hosts
nmap
nmap 192.168.0.1-10
Scan an Entire Subnet
nmap [ip address/cdir]
nmap 192.168.0.1/24
Scan Random Hosts
nmap -iR
nmap -iR 0
Excluding Targets from […]