-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnet_scanner8.py
More file actions
36 lines (28 loc) · 1.13 KB
/
Copy pathnet_scanner8.py
File metadata and controls
36 lines (28 loc) · 1.13 KB
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
#!/usr/bin/env python
from tabnanny import verbose
import scapy.all as scapy
import argparse
def get_ip() :
parser = argparse.ArgumentParser()
parser.add_argument("-t", "--target", dest="ip", help="Enter IP Address Range, to do so, use -t or --target followed by IP Address range to be scanned")
(options) = parser.parse_args()
if not options.ip :
parser.error("[-] Please enter an IP address range")
return options
def scan(ip):
arp_request = scapy.ARP(pdst=ip)
broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff")
arp_request_broadcast = broadcast / arp_request
answered_list = scapy.srp(arp_request_broadcast, timeout=1, verbose=False) [0]
clients_list = []
for element in answered_list:
client_dict = {"ip" : element[1].psrc, "mac" : element[1].hwsrc}
clients_list.append(client_dict)
return clients_list
def print_result(results_list) :
print("IP\t\t\tMAC Address\n------------------------------------------------")
for client in results_list:
print(client["ip"] + "\t\t" + client["mac"])
options = get_ip()
scan_result = scan(options.ip)
print_result(scan_result)