Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What is reconnaissance in cybersecurity?
Reconnaissance is the process of collecting information about a target system or network to find ways to exploit it.
Click to reveal answer
beginner
Name two types of reconnaissance.
The two main types are passive reconnaissance (gathering information without interacting directly with the target) and active reconnaissance (directly interacting with the target to collect data).
Click to reveal answer
intermediate
What is the difference between passive and active reconnaissance?
Passive reconnaissance collects information without alerting the target, like searching public websites. Active reconnaissance involves direct interaction, such as scanning the target's network.
Click to reveal answer
beginner
Give an example of a tool used for active reconnaissance.
Nmap is a popular tool used for active reconnaissance to scan networks and discover open ports and services.
Click to reveal answer
beginner
Why is reconnaissance important in cybersecurity?
It helps identify vulnerabilities and weaknesses in a system before launching an attack or to strengthen defenses by understanding potential threats.
Click to reveal answer
Which of the following is an example of passive reconnaissance?
APort scanning a target network
BSearching public social media profiles
CSending phishing emails
DExploiting a vulnerability
✗ Incorrect
Searching public social media profiles gathers information without interacting directly with the target, which is passive reconnaissance.
What does active reconnaissance usually involve?
AListening to radio broadcasts
BReading public documents
CWatching news about the target
DScanning target systems for open ports
✗ Incorrect
Active reconnaissance involves direct interaction like scanning systems to find open ports or services.
Which tool is commonly used for network scanning during reconnaissance?
ANmap
BPhotoshop
CExcel
DWordPress
✗ Incorrect
Nmap is a well-known tool for scanning networks to discover open ports and services.
Why might an attacker perform reconnaissance before an attack?
ATo install antivirus software
BTo update their own system
CTo find weaknesses to exploit
DTo create a backup
✗ Incorrect
Reconnaissance helps attackers find vulnerabilities to plan their attack effectively.
Which of these is NOT a goal of reconnaissance?
ADirectly exploiting the system
BIdentifying vulnerabilities
CPlanning further attack steps
DGathering information about the target
✗ Incorrect
Reconnaissance is about gathering information, not directly exploiting the system.
Explain the difference between passive and active reconnaissance with examples.
Think about whether the target is aware of the information gathering.
You got /4 concepts.
Why is reconnaissance a critical step in cybersecurity attacks and defenses?
Consider both attacker and defender perspectives.
You got /3 concepts.
Practice
(1/5)
1. What is the main purpose of reconnaissance in cybersecurity?
easy
A. To gather information about a target system or network
B. To fix vulnerabilities in software
C. To encrypt data for security
D. To create user accounts on a system
Solution
Step 1: Understand the role of reconnaissance
Reconnaissance is the initial phase where information about a target is collected to plan further actions.
Step 2: Identify the correct purpose
Among the options, only gathering information fits the reconnaissance phase.
Final Answer:
To gather information about a target system or network -> Option A
Quick Check:
Reconnaissance = Information gathering [OK]
Hint: Reconnaissance means collecting info first [OK]
Common Mistakes:
Confusing reconnaissance with fixing or attacking
Thinking it involves encryption
Assuming it creates accounts
2. Which of the following commands is commonly used for passive reconnaissance to find domain information?
easy
A. ping
B. nmap
C. whois
D. netstat
Solution
Step 1: Identify passive reconnaissance tools
Passive reconnaissance collects data without interacting directly with the target system.
Step 2: Match command to passive info gathering
The whois command queries public domain registration info without contacting the target directly.
Final Answer:
whois -> Option C
Quick Check:
Passive info tool = whois [OK]
Hint: whois shows domain info without touching target [OK]
Common Mistakes:
Using ping which sends packets actively
Confusing nmap as passive (it scans actively)
Thinking netstat gathers external info
3. Consider this command output from nmap -sP 192.168.1.0/30:
Host 192.168.1.1 is up
Host 192.168.1.2 is up
Host 192.168.1.3 is down
Host 192.168.1.4 is up
What does this output tell you?
medium
A. All hosts are unreachable
B. Hosts 192.168.1.1, 1.2, and 1.4 are reachable; 1.3 is not
C. Only 192.168.1.3 is reachable
D. The scan failed due to syntax error
Solution
Step 1: Understand nmap ping scan output
The -sP option checks which hosts respond to ping requests in the given IP range.
Step 2: Interpret the output lines
Hosts marked "is up" respond and are reachable; "is down" means no response.
Final Answer:
Hosts 192.168.1.1, 1.2, and 1.4 are reachable; 1.3 is not -> Option B