-
Notifications
You must be signed in to change notification settings - Fork 11
/
portscanner-gui.py
133 lines (113 loc) · 3.61 KB
/
portscanner-gui.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import socket,sys,threading,time
from tkinter import *
# ==== Scan Vars ====
ip_s = 1
ip_f = 1024
log = []
ports = []
target = 'enter the ip'
# ==== Scanning Functions ====
def scanPort(target, port):
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(4)
c = s.connect_ex((target, port))
if c == 0:
m = ' Port %d \t[open]' % (port,)
log.append(m)
ports.append(port)
listbox.insert("end", str(m))
updateResult()
s.close()
except OSError: print('> Too many open sockets. Port ' + str(port))
except:
c.close()
s.close()
sys.exit()
sys.exit()
def updateResult():
rtext = " [ " + str(len(ports)) + " / " + str(ip_f) + " ] ~ " + str(target)
L27.configure(text = rtext)
def startScan():
global ports, log, target, ip_f
clearScan()
log = []
ports = []
# Get ports ranges from GUI
ip_s = int(L24.get())
ip_f = int(L25.get())
# Start writing the log file
log.append('> Hulk Scanner')
log.append('='*14 + '\n')
log.append(' Target:\t' + str(target))
try:
target = socket.gethostbyname(str(L22.get()))
log.append(' IP Adr.:\t' + str(target))
log.append(' Ports: \t[ ' + str(ip_s) + ' / ' + str(ip_f) + ' ]')
log.append('\n')
# Lets start scanning ports!
while ip_s <= ip_f:
try:
scan = threading.Thread(target=scanPort, args=(target, ip_s))
scan.setDaemon(True)
scan.start()
except: time.sleep(0.01)
ip_s += 1
except:
m = '> Target ' + str(L22.get()) + ' not found.'
log.append(m)
listbox.insert(0, str(m))
def saveScan():
global log, target, ports, ip_f
log[5] = " Result:\t[ " + str(len(ports)) + " / " + str(ip_f) + " ]\n"
with open('portscan-'+str(target)+'.txt', mode='wt', encoding='utf-8') as myfile:
myfile.write('\n'.join(log))
def clearScan():
listbox.delete(0, 'end')
# ==== GUI ====
gui = Tk()
gui.title('Hulk Scanner')
gui.geometry("400x600+20+20")
# ==== Colors ====
m1c = '#00ee00'
bgc = '#222222'
dbg = '#000000'
fgc = '#111111'
gui.tk_setPalette(background=bgc, foreground=m1c, activeBackground=fgc,activeForeground=bgc, highlightColor=m1c, highlightBackground=m1c)
# ==== Labels ====
L11 = Label(gui, text = "Hulk Scanner", font=("Helvetica", 16, 'underline'))
L11.place(x = 16, y = 10)
L21 = Label(gui, text = "Target: ")
L21.place(x = 16, y = 90)
L22 = Entry(gui, text = "enter the ip")
L22.place(x = 180, y = 90)
L22.insert(0, "enter the ip")
L23 = Label(gui, text = "Ports: ")
L23.place(x = 16, y = 158)
L24 = Entry(gui, text = "1")
L24.place(x = 180, y = 158, width = 95)
L24.insert(0, "1")
L25 = Entry(gui, text = "1024")
L25.place(x = 290, y = 158, width = 95)
L25.insert(0, "1024")
L26 = Label(gui, text = "Results: ")
L26.place(x = 16, y = 220)
L27 = Label(gui, text = "[ ... ]")
L27.place(x = 180, y = 220)
# ==== Ports list ====
frame = Frame(gui)
frame.place(x = 16, y = 275, width = 370, height = 215)
listbox = Listbox(frame, width = 59, height = 6)
listbox.place(x = 0, y = 0)
listbox.bind('<<ListboxSelect>>')
scrollbar = Scrollbar(frame)
scrollbar.pack(side=RIGHT, fill=Y)
listbox.config(yscrollcommand=scrollbar.set)
scrollbar.config(command=listbox.yview)
# ==== Buttons / Scans ====
B11 = Button(gui, text = "Start Scan", command=startScan)
B11.place(x = 16, y = 500, width = 170)
B21 = Button(gui, text = "Save Result", command=saveScan)
B21.place(x = 210, y = 500, width = 170)
# ==== Start GUI ====
gui.mainloop()