blob: 2f1a9e685ff6322ad26326ea8311e6afa43a1f07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/local/bin/python3
# send Address Resolution Protocol Request for Proxy ARP not published
# expect no answer
import os
from addr import *
from scapy.all import *
arp=ARP(op='who-has', hwsrc=LOCAL_MAC, psrc=LOCAL_ADDR,
hwdst="ff:ff:ff:ff:ff:ff", pdst=FAKE_ADDR)
eth=Ether(src=LOCAL_MAC, dst="ff:ff:ff:ff:ff:ff")/arp
e=srp1(eth, iface=LOCAL_IF, timeout=2)
if e and e.type == ETH_P_ARP:
a=e.payload
a.show()
print("ARP REPLY")
exit(1)
print("no arp reply")
exit(0)
|