An open API service indexing awesome lists of open source software.

https://github.com/kost/pcap-utils

Basic tools for analyzing pcap traffic
https://github.com/kost/pcap-utils

Last synced: 6 months ago
JSON representation

Basic tools for analyzing pcap traffic

Awesome Lists containing this project

README

        

pcap-stat.pl - give statistics over multiple pcaps
snort-alert-stat.pl - group alerts and give grouped statistics
extract-ips.pl - extract IPs (source or destination or both) from pcap files using pcap filters

Few examples:

cat filelist.txt | ./pcap-stat.pl -v -f 'dst 127.0.0.1 and tcp port 80 and tcp[tcpflags] & (tcp-syn) != 0'
cat filelist.txt | ./extract-ips.pl -v -s -f 'dst 127.0.0.1 and tcp port 80 and tcp[tcpflags] & (tcp-syn) != 0' > source-ips.txt