Created
March 10, 2015 21:11
-
-
Save gkbrk/99442e1294a6c83368f5 to your computer and use it in GitHub Desktop.
Simple port scanner in Python.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import sys | |
import threading | |
import queue | |
import time | |
common_ports = { | |
"21": "FTP", | |
"22": "SSH", | |
"23": "Telnet", | |
"25": "SMTP", | |
"53": "DNS", | |
"80": "HTTP", | |
"194": "IRC", | |
"443": "HTTPS", | |
"3306": "MySQL", | |
"25565": "Minecraft" | |
} | |
def get_scan_args(): | |
if len(sys.argv) == 2: | |
return (sys.argv[1], 0, 1024) | |
elif len(sys.argv) == 3: | |
return (sys.argv[1], 0, int(sys.argv[2])) | |
elif len(sys.argv) == 4: | |
return (sys.argv[1], int(sys.argv[2]), int(sys.argv[3])) | |
def is_port_open(host, port): #Return boolean | |
try: | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
sock.settimeout(0.5) | |
sock.connect((host, port)) | |
except socket.error: | |
return False | |
return True | |
def scanner_worker_thread(host): | |
while True: | |
port = port_queue.get() | |
if is_port_open(host, port): | |
if str(port) in common_ports: | |
print("{}({}) is OPEN!".format(str(port), common_ports[str(port)])) | |
else: | |
print("{} is OPEN!".format(port)) | |
port_queue.task_done() | |
scan_args = get_scan_args() | |
port_queue = queue.Queue() | |
for _ in range(20): | |
t = threading.Thread(target=scanner_worker_thread, kwargs={"host": scan_args[0]}) | |
t.daemon = True | |
t.start() | |
start_time = time.time() | |
for port in range(scan_args[1], scan_args[2]): | |
port_queue.put(port) | |
port_queue.join() | |
end_time = time.time() | |
print("Done! Scanning took {:.3f} seconds.".format(end_time - start_time)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment