Skip to content

Instantly share code, notes, and snippets.

@danielinux
Created October 11, 2016 21:34
Show Gist options
  • Save danielinux/353db3e7de51983df26dfe3829a3c1dc to your computer and use it in GitHub Desktop.
Save danielinux/353db3e7de51983df26dfe3829a3c1dc to your computer and use it in GitHub Desktop.
replay a captured pcap stream
#!/usr/bin/python
from scapy.all import *
import time, sys
pkts = rdpcap(sys.argv[1])
clk = pkts[0].time
for p in pkts:
time.sleep(p.time - clk)
clk = p.time
sendp(p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment