Cybersecurity-Projects/PROJECTS/beginner/network-traffic-analyzer
CarterPerez-dev 0006ddad3d cracked 2026-05-23 05:01:01 -04:00
..
assets chore: add demos for projects, update haskell-reverse-proxy modules, refresh siem assets 2026-04-26 23:12:48 -04:00
cpp cracked 2026-05-23 05:01:01 -04:00
python Merge pull request #163 from CarterPerez-dev/dependabot/uv/PROJECTS/beginner/network-traffic-analyzer/python/pillow-12.2.0 2026-04-15 07:02:54 -04:00
DEMO.md chore: add demos for projects, update haskell-reverse-proxy modules, refresh siem assets 2026-04-26 23:12:48 -04:00
README.md chore: add demos for projects, update haskell-reverse-proxy modules, refresh siem assets 2026-04-26 23:12:48 -04:00

README.md

Network Traffic Analyzer

Two implementations of the same network traffic analyzer — one in Python, one in C++. Both capture packets at the kernel level, parse protocol headers, and display real-time statistics.

Screenshots & demo →

Implementations

Implementation Stack Highlights
C++ C++20 • libpcap • FTXUI Interactive TUI, polymorphic IP parser, mutex-protected stats engine
Python Python 3.14 • Scapy • Rich Producer-consumer threading, BPF filter builder, Matplotlib chart export

Quick Start

C++ — high-performance interactive TUI:

cd cpp
./install.sh
just run -i eth0

Python — scriptable with chart export:

cd python
uv sync
sudo netanal capture -i eth0

Both require root or CAP_NET_RAW capability for packet capture.