Metadata-Version: 2.1
Name: Network-Scanner
Version: 1.0.1
Summary: Python-based tool which helps to scan the network
Home-page: https://github.com/adityakesarwani/Network-Scanner
Author: Aditya Kesarwani
Author-email: adkesarw@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Network Scanner

Hi! I'm **Network Scanner**. I am a python-based tool which helps to scan the network and check for active hosts within a network by pinging them. I am very fast as I implement concepts of **asyncio** for concurrent processing.  

## Installation Instructions

For installing the tool we can use **pip installer**.

    pip install Network-Scanner

## Getting Started

  

This tool accepts command line arguments to perform a "ping-based" concurrent scan.

  

The tool accepts three command line argument:

  

1.  **Network ID:** the network which needs to be scanned.

Syntax: X.X.X.X/subnet_prefix

Example: 192.168.100.0/24

2.  **Concurrency level:** number of concurrent hosts that are pinged at the same time (accepts int value) (default level 1). **The recommeded concurrency level is from 1 to 500**. The tool can crash with the concurrency level of the more than 500.

3.  **Timeout:** number of seconds after giving up on pinging a host (accepts int/ float)(default 5s).

  

Letâ€™s start with a simple example:

  

In this example we would be scanning the **network 8.8.8.0/24** with the **concurrency level of 500** at the **timeout of 1s.**

  

Run the following command in the terminal to test above example:

  

    $ net_scan 8.8.8.0/24 --concurrent 500 --timeout 1

  

An **output.txt** file will be created in the same directory from where the command was executed, which would contain the output of network scan.

  

## How it works?

  

Lets summarize the working of tool in steps:

  

1. The journey of the tool starts with taking the command line inputs for **Network_ID**, **Concurrency_Level** and **Timeout**.

2. Once the inputs are taken, we fetch the IP addresses of all the hosts within the mentioned Network using `ipaddress` python package.

3. Then we have used **Semaphores** to maintain the concurrency in the tool. We have assigned the input of Concurrency_Level to semaphores.

4. After setting up the concurrency level we have created tasks to ping the ip addresses. We have individual tasks for all the ip addresses in the network.

5. Once the tasks are created we have kept those tasks on the **event_loop** to execute then concurrently.

6. After the execution of pings to all the hosts, the ping-reply is printed in a text file named "output.txt".

  

This repository is licensed under the MIT license. See LICENSE for details.

