Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/achrovisual/netsniff

A network sniffing program that will collect and dump various network information such as MAC and IP addresses, and protocol statistics to a file using Python and Scapy.
https://github.com/achrovisual/netsniff

network python scapy sniffer

Last synced: about 2 months ago
JSON representation

A network sniffing program that will collect and dump various network information such as MAC and IP addresses, and protocol statistics to a file using Python and Scapy.

Awesome Lists containing this project

README

        

# netsniff
Simple Python program that scans the network and dumps the results into a file. This program uses Scapy. It can get the IP and MAC mappings and the protocol statistics of the network.

# Network Scanning
The network scan performs an ARP scan to get the IP address and MAC address mappings. To get the protocol statistics, it sniffs through the packets inside the network. The syntax for performing the network scan is as follows:
```
sudo ptyhon3 netsniff.py -i [interface]
```
_This program is design to be run on Linux._

# Arguments
These are the following arguments the program can use.
### Required Arguments
| Argument | Description |
| ------------- | ------------- |
| -i | Network Interface to be used |