Courseiva
Footprinting, Reconnaissance and ScanningmediumMultiple SelectObjective-mapped

CEH Footprinting, Reconnaissance and Scanning Practice Question

Which TWO of the following Nmap scans are considered 'stealth' scans that do not complete a full TCP three-way handshake?

⚠ Common exam trap

Candidates often confuse 'stealth' with 'invisible' and incorrectly assume that any scan not completing a handshake qualifies, but the CEH defines stealth scans specifically as those that avoid the full three-way handshake (SYN, FIN, Xmas, Null) and are designed to evade detection, not just any non-handshake scan like ACK scan.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

FIN scan (-sF)

A FIN scan (-sF) sends a TCP packet with only the FIN flag set. According to RFC 793, if the port is closed, the target responds with an RST packet; if open, the packet is ignored. This avoids completing a full TCP three-way handshake, making it a stealth scan.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • FIN scan (-sF)

    Why this is correct

    The FIN scan (-sF) is considered stealthy because it sends only a FIN packet to the target port without initiating a full TCP three-way handshake. If the port is open, it typically ignores the packet, while a closed port will respond with an RST/ACK. This technique often bypasses stateless firewalls and avoids logging on the target system, as no connection is ever established, making it less detectable.

  • TCP connect scan (-sT)

    Why it's wrong here

    The TCP connect scan (-sT) is explicitly not stealthy because it completes the full TCP three-way handshake (SYN, SYN/ACK, ACK) with every target port. This process establishes a full connection, which is then immediately torn down. This full connection establishment is easily logged by the operating system and network intrusion detection systems, making it highly detectable and far from stealthy.

  • UDP scan (-sU)

    Why it's wrong here

    The UDP scan (-sU) is not considered stealthy as it operates at the UDP layer, sending UDP datagrams to target ports. Unlike TCP, UDP is connectionless and does not involve handshakes, making it fundamentally different. A closed UDP port typically elicits an ICMP Port Unreachable message, which is easily detectable by network monitoring tools and firewalls, revealing the scan activity.

  • SYN scan (-sS)

    Why this is correct

    The SYN scan (-sS), often called a 'half-open' scan, is a highly stealthy technique because it initiates a TCP handshake but does not complete it. It sends a SYN packet, and if a SYN/ACK is received, indicating an open port, the scanner immediately sends an RST packet to tear down the connection. This avoids creating a full connection entry in the target's logs, making it less detectable than a full TCP connect scan.

  • ACK scan (-sA)

    Why it's wrong here

    The ACK scan (-sA) is not a stealth port discovery scan; its primary purpose is to map firewall rules and determine if a port is filtered or unfiltered. It sends an ACK packet, and if an RST is received, the port is unfiltered, while no response or an ICMP error suggests filtering. Since it doesn't differentiate between open and closed ports, it cannot be used for traditional port scanning and thus isn't a stealth method for identifying open services.

Visual reference

Client Server SYN (seq=100) SYN-ACK (seq=200, ack=101) ACK (ack=201) Connection established — data transfer begins

About these practice questions

This CEH question is part of Courseiva's 870-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This CEH practice question is part of Courseiva's free EC-Council certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CEH exam.