mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 04:21:12 +00:00
23 lines
310 B
Markdown
23 lines
310 B
Markdown
|
# PACKET SNIFFER
|
||
|
|
||
|
Hi all! This is a packet sniffer in python.
|
||
|
|
||
|
## Libraries
|
||
|
I have used ```scapy``` library
|
||
|
|
||
|
## Getting started
|
||
|
1. First of all -
|
||
|
```
|
||
|
pip install requirements.txt
|
||
|
```
|
||
|
|
||
|
2. Secondly -
|
||
|
```
|
||
|
python main.py
|
||
|
```
|
||
|
OR
|
||
|
```
|
||
|
sudo python3 main.py
|
||
|
```
|
||
|
|
||
|
That's all. This is how we can use the packet sniffer.
|