-
Notifications
You must be signed in to change notification settings - Fork 0
/
05_ping_and_port_scan.py
78 lines (63 loc) · 2.5 KB
/
05_ping_and_port_scan.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import os
from scapy.all import ICMP, IP, sr1, TCP, sr
from ipaddress import ip_network
from concurrent.futures import ThreadPoolExecutor, as_completed
from threading import Lock
print_lock = Lock()
def ping(host):
response = sr1(IP(dst=str(host))/ICMP(), timeout=1, verbose=0)
if response is not None:
return str(host)
return None
def ping_sweep(network, netmask):
live_hosts = []
num_threads = os.cpu_count()
hosts = list(ip_network(network + '/' + netmask).hosts())
total_hosts = len(hosts)
with ThreadPoolExecutor(max_workers=num_threads) as executor:
futures = {executor.submit(ping, host): host for host in hosts}
for i, future in enumerate(as_completed(futures), start=1):
host = futures[future]
result = future.result()
with print_lock:
print(f"Scanning: {i}/{total_hosts}", end="\r")
if result is not None:
print(f"\nHost {host} is online.")
live_hosts.append(result)
return live_hosts
def scan_port(args):
ip, port = args
response = sr1(IP(dst=ip)/TCP(dport=port, flags="S"), timeout=1, verbose=0)
if response is not None and response[TCP].flags == "SA":
return port
return None
def port_scan(ip, ports):
open_ports = []
num_threads = os.cpu_count()
total_ports = len(ports)
with ThreadPoolExecutor(max_workers=num_threads) as executor:
futures = {executor.submit(scan_port, (ip, port)): port for port in ports}
for i, future in enumerate(as_completed(futures), start=1):
port = futures[future]
result = future.result()
with print_lock:
print(f"Scanning {ip}: {i}/{total_ports}", end="\r")
if result is not None:
print(f"\nPort {port} is open on host {ip}")
open_ports.append(result)
return open_ports
def get_live_hosts_and_ports(network, netmask):
live_hosts = ping_sweep(network, netmask)
host_port_mapping = {}
ports = range(1, 1024)
for host in live_hosts:
open_ports = port_scan(host, ports)
host_port_mapping[host] = open_ports
return host_port_mapping
if __name__ == "__main__":
import sys
network = sys.argv[1]
netmask = sys.argv[2]
host_port_mapping = get_live_hosts_and_ports(network, netmask)
for host, open_ports in host_port_mapping.items():
print(f"\nHost {host} has the following open ports: {open_ports}")