Monday, December 30, 2019

Open source information gathering using windows command line utilities

Get the IP address of the target by using ping command 















Note
The 0% loss reported under Ping statistics for 74.125.24.105 explains that each ICMP Echo Request message sent to www.google.com was returned. This means that, as far as this network connection goes, it can communicate with Google's website without any interruption. 

-f stands for "Do Not Fragment"
-l stands for byte size should contain from 32 to 65527 Bytes

Command: ping www.google.com -f -l 1500
















You can see above  100% loss because no packets was returned. Hence make sure to enter the correct byte range in order to communicate with the target. 

Change the rate less than 1500 bytes

 ping www.google.com -f -l 1472

















Ping command operates by sending Internet Control Message Protocol (ICMP) 

Ping Command

Using #pingcommand utility to find #ipaddress of a target #domain , Find the maximum network frame size and emulate the #tracert. #C...