Nmap Flashcards
1
Q
What is the format for a basic Nmap scan?
A
nmap
2
Q
What option will conduct a TCP-SYN scan
A
-sS
3
Q
What option will skip host discovery and treat all hosts as online?
A
-Pn
4
Q
What option will not conduct DNS resolution?
A
-n
5
Q
What option will conduct a ping scan?
A
-sn
6
Q
What option will Enable OS detection, version detection, script scanning, and traceroute?
A
-A
7
Q
What option will try to determine the OS?
A
-O
8
Q
What option will try to determine the version of the service running?
A
-sV
9
Q
What command would you enter to conduct a scan that would do the following: skip host detection, not perform DNS resolution, conduct SYN scan, conduct version detection, and conduct OS detection?
A
nmap -Pn -n -sS -sV -O