Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/achrovisual/netsniff
- Owner: achrovisual
- License: mit
- Created: 2021-01-13T06:21:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-12T05:55:52.000Z (almost 4 years ago)
- Last Synced: 2023-07-29T09:45:18.526Z (over 1 year ago)
- Topics: network, python, scapy, sniffer
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 |