312-50V12 · Question #241
A Certified Ethical Hacker is attempting to gather information about a target organization's network structure through network footprinting. During the operation, they encounter ICMP blocking by the…
The correct answer is A. Use UDP Traceroute in the Linux operating system by executing the 'traceroute' command with. When ICMP is blocked, an ethical hacker should consider using UDP Traceroute on a Linux system, typically executed with the traceroute command, to ascertain the network path using an alternative protocol.
Question
Options
- AUse UDP Traceroute in the Linux operating system by executing the 'traceroute' command with
- BUse the ICMP Traceroute on the Windows operating system as it is the default utility.
- CUse the ARIN Whois database search tool to find the network range of the target network.
- DUtilize the Path Analyzer Pro to trace the route from the source to the destination target systems.
How the community answered
(55 responses)- A78% (43)
- B5% (3)
- C2% (1)
- D15% (8)
Why each option
When ICMP is blocked, an ethical hacker should consider using UDP Traceroute on a Linux system, typically executed with the `traceroute` command, to ascertain the network path using an alternative protocol.
The Linux `traceroute` command, particularly when utilizing UDP datagrams (often the default or specified with `-U`), sends packets with increasing Time-to-Live (TTL) values to a high-numbered port on the target, allowing for path discovery even when ICMP echo requests are blocked. Intermediate routers respond with 'ICMP Time Exceeded' messages, and the destination typically sends an 'ICMP Port Unreachable' message, thereby mapping the route.
Using ICMP Traceroute would be ineffective because the question explicitly states the target system's firewall is blocking ICMP traffic, preventing this method from succeeding.
The ARIN Whois database provides static registration information about IP address ranges and organizations but does not dynamically trace the live network path taken by packets from a source to a destination.
While Path Analyzer Pro is a legitimate network analysis tool, the question emphasizes the need for an 'alternative protocol' due to ICMP blocking, and a fundamental command-line utility like `traceroute` with UDP is a direct, protocol-specific solution, whereas a generic tool might still default to ICMP or require specific configuration for alternatives.
Concept tested: Network path tracing with alternative protocols (UDP)
Source: https://www.man7.org/linux/man-pages/man8/traceroute.8.html
Topics
Community Discussion
No community discussion yet for this question.