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
- Host: GitHub
- URL: https://github.com/kost/pcap-utils
- Owner: kost
- Created: 2012-01-29T06:36:46.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-09T10:31:07.000Z (about 13 years ago)
- Last Synced: 2024-10-16T06:26:25.673Z (7 months ago)
- Language: Perl
- Homepage:
- Size: 97.7 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
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 filtersFew 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