I'm going to build an sniffing software for the university. I have some ideas but want to hear some more. The idea is to use a passive tap on front on the firewall and so get all data...
I know C is faster but i want to do it with python any good ideas like libraries etc?
Refs:
Use
pylibcap
. It provides an interface to libpcap which is the de-facto standard for packet sniffing on linux. To parse packets, you might want to use theconstruct
library as it already contains a parser for TCP packets.Here's a small example program: