1/40
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
What is the primary purpose of scanning in ethical hacking?
To actively gather information about a target such as live hosts open ports services and versions
What is the difference between scanning and enumeration?
Scanning identifies hosts ports and services while enumeration gathers detailed information from identified services
What does Nmap stand for?
Network Mapper
What command performs a basic Nmap scan?
nmap <target_ip>
Which Nmap option performs service and version detection?
-sV
What does an open port mean?
A service is actively listening on that port
What does a closed port mean?
The host is reachable but no service is listening on that port
What does a filtered port mean?
Nmap cannot determine the port state because traffic may be blocked or filtered
Does an open port automatically mean the service is vulnerable?
No an open port only means a service is listening or accessible
Why is service version detection important?
It identifies the specific software and version for further enumeration and vulnerability assessment
What does ping help check?
Whether a target is reachable and responding to ICMP
Does a failed ping always mean the target is down?
No ICMP traffic may be blocked even when the host is active
Which service commonly runs on port 21?
FTP
Which service commonly runs on port 22?
SSH
Which service commonly runs on port 23?
Telnet
Which service commonly runs on port 25?
SMTP
Which service commonly runs on port 53?
DNS
Which service commonly runs on port 80?
HTTP
Which services are commonly associated with ports 139 and 445?
NetBIOS and SMB
Which service commonly runs on port 3306?
MySQL
Which service commonly runs on port 5432?
PostgreSQL
Complete the sequence Reconnaissance then Scanning then what then Vulnerability Assessment?
Enumeration
What comes after a port is discovered and a service is identified?
Enumeration
What additional information can nmap -sV provide?
Detailed service identification and version information
Why should scan results guide enumeration?
Because enumeration should focus on the specific services discovered during scannin
Confirm reachability then scan ports identify services detect versions and use the results to guide enumeration