312-50V11 · Question #133
Which of the following is considered as one of the most reliable forms of TCP scanning?
The correct answer is A. TCP Connect/Full Open Scan. TCP Connect scan completes the full three-way handshake, making it the most reliable method for confirming open ports.
Question
Which of the following is considered as one of the most reliable forms of TCP scanning?
Options
- ATCP Connect/Full Open Scan
- BHalf-open Scan
- CNULL Scan
- DXmas Scan
How the community answered
(16 responses)- A88% (14)
- B6% (1)
- C6% (1)
Why each option
TCP Connect scan completes the full three-way handshake, making it the most reliable method for confirming open ports.
TCP Connect/Full Open Scan uses the OS to complete the full SYN, SYN-ACK, ACK handshake before sending a RST to close the connection. Because the connection is fully established, the result is definitive - there is no ambiguity about whether a port is open. This reliability comes at the cost of being easily logged by the target system.
Half-open (SYN) scan never completes the handshake, so it is stealthier but can produce ambiguous results if SYN-ACK packets are dropped or filtered.
NULL Scan sends packets with no TCP flags set and relies on RFC-compliant RST responses, but non-RFC-compliant systems such as Windows do not respond as expected, making it unreliable.
Xmas Scan sets the FIN, URG, and PSH flags simultaneously and suffers the same reliability limitation as NULL Scan - it fails against Windows hosts and non-RFC-compliant stacks.
Concept tested: TCP port scanning reliability and handshake methods
Source: https://nmap.org/book/man-port-scanning-techniques.html
Topics
Community Discussion
No community discussion yet for this question.