标签:import port psr http imp code 点击下载 blank targe
首先需要安装scapy包,点击下载
1 from scapy.all import * 2 3 def pack_callback(packet): 4 print packet.show() 5 if packet[‘Ether‘].payload: 6 print packet[‘Ether‘].src 7 print packet[‘Ether‘].dst 8 print packet[‘Ether‘].type 9 10 if packet[‘ARP‘].payload: 11 print packet[‘ARP‘].psrc 12 print packet[‘ARP‘].pdst 13 print packet[‘ARP‘].hwsrc 14 print packet[‘ARP‘].hwdst 15 16 filterstr="arp" 17 18 sniff(filter=filterstr,prn=pack_callback, iface=‘enp7s0f1‘, count=0)
标签:import port psr http imp code 点击下载 blank targe
原文地址:https://www.cnblogs.com/wangjq19920210/p/10089055.html