我正在尝试使用Raspberry Pi从网络上的特定无线设备查找ARP请求。这是那些亚马逊破折号按钮之一。破折号连接到wifi时,有人使用此代码进行侦听。
from scapy.all import *
def arp_display(pkt):
if pkt[ARP].op == 1: #who-has (request)
if pkt[ARP].psrc == '0.0.0.0': # ARP Probe
if pkt[ARP].hwsrc == '74:75:48:5f:99:30': # button 1
print "Pushed Huggies"
elif pkt[ARP].hwsrc == '10:ae:60:00:4d:f3': # button 2
print "Pushed Elements"
else:
print "ARP Probe from unknown device: " + pkt[ARP].hwsrc
print sniff(prn=arp_display, filter="arp", store=0, count=10)
当我在Raspbian上运行此程序(安装了python和scapy)时,出现错误
"IndexError: Layer [ARP] not found"
我完全不了解船尾,只是第一次潜水。感谢您的任何想法。
你有没有做这个工作?我已经解决了这个问题,但是仍然无法从我的按钮看到ARP请求
—
jbnunn
@jbnunn这个答案对我有用stackoverflow.com/questions/24415294/…–
—
Katu