タグ付けされた質問 「scapy」

4
PythonとScapyを使用してPiでARPを探る
Raspberry Piを使用して、ネットワーク上の特定のワイヤレスデバイスからのARP要求を見つけようとしています。Amazonのダッシュボタンの1つです。誰かがこのコードを使用して、ダッシュボードがWi-Fiに接続したときに耳を傾けました。 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: " + …
12 python  arp  scapy 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.