capture
Split pcap to multiple files based on number of packets
2019/06/03
Here is a script that can use tshark to split a large pcap to multiple small pcaps inpcap="test.pcap" max=$(tshark -r $inpcap -n -T fields -e frame.number|tail -1) # This is the number of packets in …
scapy packet dump to packet
2017/04/10
First you need to have scapy installed. And if you don’t know about scapy, then […] Scapy is a powerful interactive packet manipulation program. It is able to forge or decode packets of a wide …