Tuesday, February 22, 2011

Simple Ping Sweep Using Notepad


 Simple Ping Sweep Using Notepad

This code is a simple batch script for ping sweep if u on the network. Just run it in .bat extension.But what is Ping sweep? Ping sweep  is a technique used to determine which of a range of IP addresses map to live hosts. It consists of ICMP ECHO requests sent to multiple hosts. If a given address is live, it will return an ICMP ECHO reply. A ping is often used to check that a network device is functioning. To disable ping sweeps on a network, administrators can block ICMP ECHO requests from outside sources.  
Also known, basic network scanning technique used to determine which of a range of IP addresses map to live hosts (computers). Whereas a single ping will tell you whether one specified host computer exists on the network, a ping sweep consists of ICMP (Internet Control Message Protocol) ECHO requests sent to multiple hosts. If a given address is live, it will return an ICMP ECHO reply. Ping sweeps are among the older and slower methods used to scan a network.


Copy the code below.

@echo off
cls
@color 0A
echo
echo ********************************
echo *  Ethical Hacking Tutorials Blogspot    *
echo ********************************
echo.
for /l %%a in (1,1,255) do (
ping -n 1 10.19.127.%%a | find "Reply"
)
----------------------------------------------------------------------
 Paste this code in notepad, then save it in "ping sweep.bat". copy include the quote. Save it.





I would like to say thank you and highly appreciate your support. Please subscribe from the link bottom to appreciate my work and get the daily updates. Thank You. Happy Ethical Hacking Subscribe to Free Ultimate Download by Email

No comments:

Post a Comment