312-50V11 · Question #615
Which type of Nmap scan is the most reliable, but also the most visible, and likely to be picked up by and IDS?
The correct answer is D. Connect scan. The TCP Connect scan completes the full three-way handshake on each probed port, making it the most reliable scan type but also the most visible and easiest for an IDS to detect and log.
Question
Which type of Nmap scan is the most reliable, but also the most visible, and likely to be picked up by and IDS?
Options
- ASYN scan
- BACK scan
- CRST scan
- DConnect scan
- EFIN scan
How the community answered
(14 responses)- A7% (1)
- D86% (12)
- E7% (1)
Why each option
The TCP Connect scan completes the full three-way handshake on each probed port, making it the most reliable scan type but also the most visible and easiest for an IDS to detect and log.
A SYN scan is stealthier than a Connect scan because it sends only the initial SYN packet and tears down the half-open connection before it completes, generating fewer logs on the target.
An ACK scan is designed to map firewall rulesets by distinguishing filtered from unfiltered ports, not to reliably determine whether a port is open.
RST scan is not a standard standalone Nmap scan type used for open port discovery in the same way as a Connect or SYN scan.
A Connect scan uses the operating system's native connect() system call to complete the full TCP three-way handshake (SYN, SYN-ACK, ACK) for each target port, producing a definitive result for open or closed ports. Because the connection is fully established, it is logged by the target system's services and trivially detected by any IDS monitoring for completed connections. This combination of high reliability and high visibility distinguishes it from stealthier scan types that leave the handshake incomplete.
A FIN scan exploits how certain OS implementations respond to unexpected FIN packets, making it a stealth technique that is less visible to IDS than a Connect scan.
Concept tested: TCP Connect scan reliability vs. IDS detectability
Source: https://nmap.org/book/man-port-scanning-techniques.html
Topics
Community Discussion
No community discussion yet for this question.