wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Module 2A. Active Reconnaissance - Scanning

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.
Which of the following is OUTSIDE the scope of Active Reconnaissance?
a)
Open ports
b)
Live hosts
c)
Running services
d)
Payloads
2.
Which of the following is NOT a tool to discover live hosts?
a)
whois
b)
arp-scan
c)
nmap
d)
ping sweep
3.
Which of the following protocols CAN NOT be used for live host discovery?
a)
UDP
b)
ICMP
c)
ARP
d)
SSH
4.

Which of the following can ONLY be used to scan for live host WITHIN the same subnet?

a)
nmap TCP ACK ping scan
b)
arp-scan
c)
ping sweep
d)
nmap UDP ping scan
5.
Which of the following live hosts discovery scans send ICMP packets? Pick 2
a)
ping sweep
b)
nmap TCP SYN ping scan
c)
nmap ICMP ping (echo) scan
d)
nmap UDP ping scan
6.
Which of the following nmap command will perform an ARP scan for live hosts discovery within the subnet 10.0.1.0/24?
a)
nmap -sn -sV 10.0.1.0/24
b)
nmap -sn -PR 10.0.1.0/24
c)
nmap -sn -PE 10.0.1.0/24
d)
sudo nmap -sn -PM 10.0.1.0/24
7.
Which of the following flags specifies to scan all the 65535 ports? Pick 2
a)
nmap 10.0.1.2 -p 65535
b)
nmap 10.0.1.2 -p all
c)
nmap 10.0.1.2 -p-
d)

nmap 10.0.1.2 -p 0-65535

8.
Which of the following nmap scans will perform a full three-way handshake to scan for open ports?
a)
UDP
b)
TCP SYN
c)
TCP Connect
d)
TCP ACK
9.
Which of the following nmap scans is more likely to be detected by an IDS system?
a)
UDP
b)
TCP SYN
c)
TCP Connect
d)
TCP ACK
10.
Which of the following nmap scans is considered stealthy?
a)
UDP
b)
TCP SYN
c)
TCP Connect
d)
TCP ACK
11.

Which of the following nmap scans is the slowest to perform?

a)
UDP
b)
TCP SYN
c)
TCP Connect
d)
TCP ACK
12.

Which of the following commands will perform a full three-way handshake to scan for open ports in the machine 10.0.1.2 without scanning for service version?

a)
nmap -sT -Pn 10.0.1.2
b)
sudo nmap -sS -Pn 10.0.1.2
c)
sudo nmap -sU -Pn 10.0.1.2
d)
sudo nmap -sV -Pn 10.0.1.2
13.

Which of the following commands will perform a partial three-way handshake to scan for open ports in the machine 10.0.1.2 without scanning for service version?

a)
nmap -sT -Pn 10.0.1.2
b)
sudo nmap -sS -Pn 10.0.1.2
c)
sudo nmap -sU -Pn 10.0.1.2
d)
sudo nmap -sV -Pn 10.0.1.2
14.

Which of the following nmap scans will detect the versions of services running on ports 21 AND 80 for the machine 10.0.1.2?

a)
nmap -sT -Pn 10.0.1.2 -p21,80
b)
sudo nmap -sS -Pn 10.0.1.2 -p-
c)
sudo nmap -sV -Pn 10.0.1.2 -p21-80
d)

sudo nmap -sV -Pn 10.0.1.2 -p21,80

15.

Which of the following nmap scans will detect the OS version of the machine 10.0.1.2?

a)

sudo nmap -O -Pn 10.0.1.2

b)
sudo nmap -sS -Pn 10.0.1.2
c)
sudo nmap -sU -Pn 10.0.1.2
d)
sudo nmap -sV -Pn 10.0.1.2