Skip to content

IP Sweeper Script is a script that will ping all the IP addresses in the given range and filter out the IPs that responded. This script is a very popular script and i know it, but this project is a detailed explanation of it.

License

Notifications You must be signed in to change notification settings

CYBWithFlourish/IP-Sweeper-Script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

The IP Sweeper Script

A welled detailed explanation of the IP(Internet Address) sweeper script written in Bash.

  • This script is designed to scan a range of IP addresses, typically within a specified subnet, to determine which IPs are active and responsive on a network. The primary purpose is to discover live hosts and filter out those that are reachable. The script uses the Internet Control Message Protocol (ICMP), often associated with the ping command, to send a simple network message (ping) to each IP address in the given range.

To get started

  • Clone the Repository i.e. git clone https://github.com/CYBWithFlourish/IP-Sweeper-Script.git or download the ip_sweeper.sh script.
  • Navigate to the project directory using the cd command i.e. cd IP-Sweeper-Script or to where you downloaded the script file.

    Some of the conditions to be met before running this script include:

    • Ensure Bash is installed on your system. If your usind Linux or macOS, Bash is available by default. On Windows, you can use Git Bash or other tools (i.e. Cygwin, Bash Shell for Windows).
    • The script heavily relies on the ping command which also comes pre-installed on most systems. You can verify its availability by running ping in your terminal.
    • For Unix-like Operating systems, Linux and macOS, make the script executable by running chmod +x ip_sweeper.sh.
    • Lastly, if your network uses a different IP range, adjust the range in the script accordingly. The script is currently set to iterate from 1 to 254, update the seq cammand in the script.
  • Once your sure the above conditions are satisfied, run the script with the folowing command. ./ip_sweeper.sh [First three ranges of your IP]

    This will run the file and sweep all the active ip's in the given range in the script.

    i.e. ./ip_sweeper.sh 192.186.1

Some fundamentals required to write and understand this script.

  • grep command.

    It is used to search given file for patterns specified by the user. Basically grep lets you enter a pattern of text and it searches for this pattern within the text that you provide it.

    Note that the grep command is not used to extract sections from each file.

  • tr command.

    This command is used for translating or deleting characters.

  • cat command.

    The cat command allows us to create single or multiple files,the view containing the file, concatenate(add) files, and redirect output in terminal or files.

  • cut command.

    It is used to extract sections from each line of input -- usually from a file.

  • echo command.

    Used to print anything on the console.

  • if-else command.

    This commands is a very important part of programming/scripting which allows us to make some decisions based on some conditions.

  • for Loops - The for loop is a control flow statement in programming that allows code to be repeatedly executed. It is commonly used to iterate over lists or sequences of items, executing a specific set of instructions for each item in the list i.e.
  for var in 0 1 2 3 4 5 6 7 8 9
do
  echo $var
done

Output:

> It will print numbers from 0 to 9

The script

#!/bin/bash
for ip in $(seq 1 254); do
    ping -c 1 "$1.$ip" | grep "64 bytes" | cut -d " " -f 4 | tr -d ":" &
  done

The script explained and breaked down.

Now let's break down and try to understand the code.

  • #!/bin/bash - It's basically a comment telling the computer, "Hey!, am a bash script".

  • for ip in `seq 1 254 `; do 

    This is for loop. We want to execute the command for every ip in the given range. You can modified the loop to use $(seq 1 254) to generate the sequence of IP addresses. Thus, we write a for loop and execute it in a range for 1 tp 245 that is, the number of ip addresses in a particular network.

    Note that you might want to adjust the range based on your network setup(range on the actual IP addresses you want to ping in your network). If you're working with standard IPv4 addresses, the range is typically from 1 to 255.

  • ping -c 1 "$1.$ip" | grep "64 bytes" | cut -d " " -f 4 | tr -d ":" &

    ping: To ping the ip address

    -c 1: Ping one ip at a time

    $1.$ip: $1 will be the user input. We will input the first three ranges of the ip and the last range will be taken from the for loop. i.e. if a user input was 192.68.1 then in the first run of the for loop$ip will be 1. thus, $1.$ip will result in 192.68.1.1 and it will ping this ip.

    grep "64 bytes": Try running a ping command to an ip. If the ip responds, the result will be "64 bytes from (given_ip)". Now, if the ip is active, it will respond and the response will contain the term "64 bytes". Thus, grep "64 bytes" will simply filter out the ip's that responded from a total of 254 ip addresses. We know that if the ip is active it will respond. the demo of responding will be something like this, '64 bytes from given_ip' where given_ip will be the ip pinged too. Therefore from the whole response now, we will need only the ip address of the responded ip.

    cut -d " " -f 4: This command basically does the same thing. It cuts the whole response with the delimeter(-d), whitespace(" "), and picks the 4th term(-f 4) from it, that will be the ip. This cut command will basically produce output like 192.68.1.1

    Here, we don't need the colon(:). We just need the ip, thus we run the tr command.

    tr -d ":": Here we pass colon(:) as a delimeter and tr command deletes it.

    &: This basically allows the thread to work simultaneously.

    | (pipe): It basically joins all the above commands as a single command.

    Dont't be confuse here, we used {} in the script to group the commands inside the subshell to ensure the spinner runs until all the ping commands finish.

what else can this script be used for??

If you're curious about the practical applications of this script, no need to worry—I've provided a detailed explanation below

The results obtained from the IP Sweeper script, which provides a list of live hosts in a specified IP address range, can be used for various purposes in networking and cybersecurity. Here are some common applications:

  • Network Discovery:

    Identify all active devices on a network, assisting in the creation and maintenance of an inventory of connected devices.

  • Network Troubleshooting:

    Quickly identify and isolate connectivity issues by determining which devices are reachable and which may be experiencing problems.

  • Security Auditing:

    Assess the security posture of a network by identifying live hosts. Unexpected or unauthorized devices may indicate security vulnerabilities or unauthorized access.

  • Resource Management:

    Understand the distribution of active devices and allocate resources accordingly. This can be especially useful in optimizing network performance and ensuring efficient resource utilization.

  • Intrusion Detection:

    Use the list of live hosts to establish a baseline of normal network activity. Any deviations or unexpected devices can be flagged for further investigation as potential security incidents.

  • Asset Management:

    Support asset management processes by providing an up-to-date list of active devices. This is crucial for tracking hardware and software assets for inventory and licensing purposes.

  • Network Mapping:

    Create a visual map of the network topology based on the discovered live hosts. This can aid in understanding the layout of the network and planning for future expansions or modifications.

  • Incident Response:

    During a security incident, the list of live hosts can be valuable for incident responders to quickly identify potentially compromised systems and take appropriate actions.

  • Documentation:

    Generate documentation that includes a list of active devices for future reference or as part of network documentation.

  • Automation and Integration:

    Integrate the results with other tools or scripts for further automation. For example, automatically feed the list of live hosts into another script that performs additional actions or checks.

About

IP Sweeper Script is a script that will ping all the IP addresses in the given range and filter out the IPs that responded. This script is a very popular script and i know it, but this project is a detailed explanation of it.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages