312-50V11 · Question #1037
Sam is a penetration tester hired by Inception Tech, a security organization. He was asked to perform port scanning on a target host in the network. While performing the given task, Sam sends…
The correct answer is C. TCP Maimon scan. The TCP Maimon scan sends FIN/ACK probe packets, and receiving an RST response from the target indicates the scanned port is closed.
Question
Sam is a penetration tester hired by Inception Tech, a security organization. He was asked to perform port scanning on a target host in the network. While performing the given task, Sam sends FIN/ACK probes and determines that an RST packet is sent in response by the target host, indicating that the port is closed. What is the port scanning technique used by Sam to discover open ports?
Options
- AXmas scan
- BIDLE/IPID header scan
- CTCP Maimon scan
- DACK flag probe scan
How the community answered
(27 responses)- A11% (3)
- B4% (1)
- C81% (22)
- D4% (1)
Why each option
The TCP Maimon scan sends FIN/ACK probe packets, and receiving an RST response from the target indicates the scanned port is closed.
Xmas scan sets the FIN, PSH, and URG flags simultaneously on probe packets, not FIN/ACK, and interprets no response as an open port rather than relying on RST packets to identify closed ports.
IDLE/IPID scan is a covert technique that uses a third-party zombie host's incrementing IP ID field to infer port status on the target without sending packets directly from the attacker's own IP address.
TCP Maimon scan, named after researcher Uriel Maimon, sends FIN/ACK packets to probe target ports on a host. According to RFC 793 behavior, a closed port on a compliant system responds with an RST packet, while an open port typically drops the packet and returns nothing, allowing the attacker to infer port state. This technique is effective at evading stateless packet filters and certain firewalls that do not track connection state.
ACK flag probe scan sends packets with only the ACK flag set and is primarily used to map firewall rulesets and determine whether ports are statefully filtered, not to identify open versus closed ports.
Concept tested: TCP Maimon port scanning using FIN/ACK probes
Source: https://nmap.org/book/scan-methods-maimon-scan.html
Topics
Community Discussion
No community discussion yet for this question.