To extract network-level information about a target domain (e.g., www.certifiedhacker.com) by performing traceroute operations on both Windows and Linux machines. This helps map the path packets take across the Internet and reveals network infrastructure like routers, firewalls, and intermediaries.
Network footprinting is the practice of collecting data about a target's network architecture, including routers, hops, and packet flow paths. Traceroute tools are used to map how packets travel from source to destination. This information allows ethical hackers or penetration testers to:
Launched Command Prompt on Windows 11 machine.
Executed:
tracert www.certifiedhacker.com
To view all options of the command:
tracert /?
To limit the trace to 5 hops:
tracert -h 5 www.certifiedhacker.com
h sets the maximum number of hops.