Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.1 KB

File metadata and controls

24 lines (17 loc) · 1.1 KB

Network Sniffer Python Script

Description

This Python script implements a network sniffer using the Scapy library. It captures and analyzes network traffic, providing detailed information about Ethernet frames, IP packets, TCP segments, and UDP datagrams. The project is useful for understanding network protocols, traffic analysis, and network troubleshooting.

Usage

  1. Clone this repository to your local machine.
  2. Open the project in PyCharm on Windows 11.
  3. Ensure Python and the Scapy library are installed. If not, follow the installation instructions below.
  4. Run the network_sniffer.py script in PyCharm.
  5. The script will start capturing and displaying network traffic information in the console.

Installation

To use this script, you need Python and the Scapy library installed on your machine:

pip install scapy

References