What is network scanning?
The process of discovering live hosts, open ports, services, and vulnerabilities on a network.
What is the main goal of network scanning in CEH?
To gather detailed information about target systems for attack planning or security assessment.
Which phase of ethical hacking does network scanning belong to?
Scanning and Enumeration phase.
What is host discovery?
The process of identifying live hosts on a network.
What is port scanning?
The technique used to identify open, closed, or filtered ports on a target system.
What is service version detection?
Identifying the application and version running on an open port.
What is OS fingerprinting?
The technique used to determine the operating system of a target host.
What is vulnerability scanning?
The process of identifying known weaknesses in systems or networks.
What is TCP connect scan?
A full TCP handshake scan that completes the connection to the target port.
What is SYN scan?
A half-open scan that sends SYN packets without completing the TCP handshake.
Why is SYN scan stealthier than TCP connect scan?
Because it does not complete the full TCP handshake.
What is UDP scanning?
The process of identifying open UDP ports on a target system.
Why is UDP scanning slower than TCP scanning?
Because UDP does not provide responses for closed ports.
What is FIN scan?
A stealth scan that sends FIN packets to evade firewalls and logging.
What is NULL scan?
A scan that sends packets with no flags set.
What is Xmas scan?
A scan that sends packets with FIN, PSH, and URG flags set.
Which RFC defines TCP/IP behavior used in stealth scans?
RFC 793.
What does an open port indicate?
A service is actively listening on the port.
What does a filtered port indicate?
A firewall or security device is blocking the port.
What tool is most commonly used for network scanning in CEH?
Nmap.
What does Nmap stand for?
Network Mapper.
Which Nmap option is used for SYN scan?
-sS
Which Nmap option is used for OS detection?
-O
Which Nmap option enables service version detection?
-sV