Basic NMAP Commands Flashcards

1
Q

How do you conduct a basic NMAP scan of 8.8.8.8?

A

nmap 8.8.8.8

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

What nmap command should you use to scan port 80 of a target?

A

nmap -p <Port#> <Target> (Ex: nmap -p 80 10.10.1.50)</Target>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What command allows you to conduct a basic ping scan of a subnet?

A

nmap -sp <Target> (Ex: 192.168.20.0/24)</Target>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What command do you use to scan a port range of a target?

A

nmap -p <Port> <Target> (Ex: nmap -p 1-65535</Target></Port>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What command can you use to scan multiple IP address?

A

nmap <Target 1> <Target 2> (Ex: nmap 10.10.1.50 192.168.1.60)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

You need to conduct a basic scan of a small subnet range, what command would you use?

A

nmap X.X.X.X-X (Ex: nmap 10.10.1.5-15)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What command can you use to scan a targets OS and Services?

A

nmap -A X.X.X.X (Ex: nmap -A 10.10.1.5)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you detect a targets services in NMAP?

A

nmap -sV X.X.X.X (Ex: nmap -sV 10.10.10.5)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you run a TCP scan in NMAP?

A

nmap -sT X.X.X.X (Ex: nmap -sT 192.168.1.88)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you run a UDP scan in NMAP?

A

nmap -sU X.X.X.X (Ex: nmap -sU 192.168.40.11)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you conduct a TCP SYN(Stealth) scan?

A

nmap -sS X.X.X.X (Ex: nmap -sS 192.168.3.78)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What command do you use to scan for the targets OS?

A

nmap 192.168.1.22 -O

How well did you know this?
1
Not at all
2
3
4
5
Perfectly