Target Specifications Flashcards
1
Q
Scan a single IP
A
nmap 192.168.1.1
2
Q
Scan specific IPs
A
nmap 192.168.1.1 192.168.2.1
3
Q
Scan a range
A
nmap 192.168.1.1-254
4
Q
Scan a domain
A
nmap scanme.nmap.org
5
Q
Scan using CIDR notation
A
nmap 192.168.1.0/24
6
Q
Scan targets from a file
A
-iL nmap -iL targets.txt
7
Q
Scan 100 random hosts
A
-iR nmap -iR 100
8
Q
Exclude listed hosts
A
–exclude
nmap –exclude 192.168.1.1