A beginner-friendly SOC Analyst / Network Security project that analyzes network packet data and identifies suspicious traffic patterns.
- Packet analysis
- Network traffic monitoring
- TCP/IP fundamentals
- Suspicious port detection
- Threat hunting
- Python scripting
- Blue Team documentation
packet_sniffer.py- Main Python scriptsample_packets/sample_traffic.csv- Sample packet datareports/packet_report.txt- Report created after running the toolrequirements.txt- Python requirements
- Suspicious ports
- Repeated connections from the same source IP
- Possible port scanning
- Unusual protocols
- High-risk destination ports
python packet_sniffer.py sample_packets/sample_traffic.csvPACKET SNIFFER REPORT
Total packets analyzed: 10
Suspicious packets found: 4
ALERT: Possible port scan from 192.168.1.50
ALERT: Suspicious destination port 3389 detected
SOC Analysts and network defenders review traffic patterns to identify attacks, scanning, brute-force activity, and suspicious connections. This project shows that you understand packet analysis and network monitoring concepts.