0
我在查找工作代碼時發現一些問題,以查找由亞馬遜短劃線按鈕發出的ARP請求。我嘗試Ted Benson's code,也this code here,但似乎都沒有工作。檢測短劃線按鈕ARP請求
泰德代碼:
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
print("ARP Probe from: " + pkt[ARP].hwsrc)
print(sniff(prn=arp_display, filter="arp", store=0, count=10))
我遇到的問題是與線scapy.all import *
。我得到一長串解釋,但錯誤的最後一行是 import dnet ImportError: No module named dnet
。
我想第二個代碼是
import socket
import struct
import binascii
# Written by Bob Steinbeiser (https://medium.com/@xtalker)
rawSocket = socket.socket(socket.AF_PACKET, socket.SOCK_RAW,
socket.htons(0x0003))
MAC = '74c24671971c'
while True:
packet = rawSocket.recvfrom(2048)
ethernet_header = packet[0][0:14]
ethernet_detailed = struct.unpack('!6s6s2s', ethernet_header)
arp_header = packet[0][14:42]
arp_detailed = struct.unpack('2s2s1s1s2s6s4s6s4s', arp_header)
# skip non-ARP packets
ethertype = ethernet_detailed[2]
if ethertype != '\x08\x06':
continue
source_mac = binascii.hexlify(arp_detailed[5])
dest_ip = socket.inet_ntoa(arp_detailed[8])
if source_mac == MAC:
print "Dash button pressed!, IP = " + dest_ip
這是我收到的錯誤:'AttributeError: 'module' object has no attribute 'AF_PACKET''
。
我已經在python 2.7和3.4中試過這兩個代碼,它既不能工作。請告訴我是否有任何事情可以做,或者我可以重新選擇任何代碼。
歡迎來到SO。可能沒有足夠的信息來回答這個問題。參見[如何提問](http://stackoverflow.com/help/how-to-ask)並創建一個[最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。 – tmthydvnprt