dpkt
Install
1 | python setup.py install |
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | import dpkt counter = 0 ipcounter = 0 tcpcounter = 0 udpcounter = 0 filename = 'sampledata.pcap' for ts, pkt in dpkt.pcap.Reader( open (filename, 'r' )): counter + = 1 eth = dpkt.ethernet.Ethernet(pkt) if eth. type ! = dpkt.ethernet.ETH_TYPE_IP: continue ip = eth.data ipcounter + = 1 if ip.p = = dpkt.ip.IP_PROTO_TCP: tcpcounter + = 1 if ip.p = = dpkt.ip.IP_PROTO_UDP: udpcounter + = 1 print "Total number of packets in the pcap file: " , counter print "Total number of ip packets: " , ipcounter print "Total number of tcp packets: " , tcpcounter print "Total number of udp packets: " , udpcounter |
References
- https://github.com/kbandla/dpkt
- https://pypi.python.org/pypi/dpkt
- https://dpkt.readthedocs.io/en/latest/
- https://programtalk.com/python-examples/?api=dpkt
- https://github.com/jeffsilverm/dpkt_doc
- https://jon.oberheide.org/blog/2008/10/15/dpkt-tutorial-2-parsing-a-pcap-file/
- http://www.commercialventvac.com/dpkt.html