Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. #!/usr/bin/python
  2. from scapy.all import *
  3.  
  4. pkt = RadioTap(rdpcap('send2.pcap')[0])
  5. print("Sending packet: " + pkt.summary())
  6.  
  7. sendp(pkt, iface='wlan1mon')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement