Skip to content

Create a packet sniffer that monitors and captures network packets in real-time to analyze traffic.

Notifications You must be signed in to change notification settings

RedEyeCyberSecurity/Network-Sniffer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Network-Sniffer

Create a packet sniffer that monitors and captures network packets in real-time to analyze traffic.

🛠️ How It Works Using libraries like scapy, this tool listens to network traffic, captures packets, and displays useful information about them.

from scapy.all import sniff


# Callback function for processing packets
def packet_callback(packet):
    print(packet.summary())


# Main Sniffer Logic
print("[+] Starting packet sniffer...")
sniff(prn=packet_callback, store=0)

About

Create a packet sniffer that monitors and captures network packets in real-time to analyze traffic.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages