Skip to content

Instantly share code, notes, and snippets.

@filipesam
Forked from danielinux/pcap_replay.py
Created September 9, 2022 08:01
Show Gist options
  • Select an option

  • Save filipesam/a36e0fb17b14c1c55e4dca6d88b0bb70 to your computer and use it in GitHub Desktop.

Select an option

Save filipesam/a36e0fb17b14c1c55e4dca6d88b0bb70 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