Advertisement
AppajiC

arpspoof_sniff.py

Sep 27th, 2022
874
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. import scapy.all as scapy
  2.  
  3. def arp_display(pkt):
  4.     print(pkt.summary())
  5.  
  6. scapy.sniff(iface='attacker-eth0',prn=arp_display, store=0, count=0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement