Watchmen
Watch your HTTP traffic
Install / Use
/learn @athoune/WatchmenREADME
Watchmen
Watch HTTP traffic.
You can use it postmortem with tcpdump data, and later, you will be able to use it with live data.
Install
This project use two python's libraries, dpkt for reading ethernet packets, and pcap to spy the ethernet flow on your computer. This libraries are painful to install, pip doesn't works, and with a Mac, it's worst (it works with 10.8, not with 10.6). But, there is nice packages for Debian and Ubuntu.
sudo aptitude install python-dpkt python-pypcap
Test post mortem analysis
sudo tcpdump -n -w test.dat -i en0 "tcp port 80"
You need test.dat samples data.
./flow.py --file test.dat
Test live analysis
sudo ./flow.py -i en0
