-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.py
494 lines (389 loc) · 13.4 KB
/
run.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
import os
import re
import sys
import time
import requests
from modules import VooCode
from modules.Sublist3r import sublist3r
from beautifultable import BeautifulTable
global version, use, load, b, outputFile, domain, domainOutput, inputFile
version = 'v1.0'
def banner():
if os.name == 'nt':
os.system('cls')
else:
os.system('clear')
print('''
\t \033[1;32;40m『\033[0m\033[1;34;40mV\033[0m\033[1;33;40m』\033[0m\033[1;32;40m『\033[0m\033[1;34;40mo\033[0m\033[1;33;40m』\033[0m\033[1;32;40m『\033[0m\033[1;34;40mo\033[0m\033[1;33;40m』\033[0m\033[1;32;40m『\033[0m\033[1;34;40mB\033[0m\033[1;33;40m』\033[0m\033[1;32;40m『\033[0m\033[1;34;40ma\033[0m\033[1;33;40m』\033[0m\033[1;32;40m『\033[0m\033[1;34;40mr\033[0m\033[1;33;40m』\033[0m {}
'''.format(version))
def menu():
while True:
try:
cmd = input('\033[1;31;40mvoobar\033[0m>').lower()
if cmd == 'help':
print('''<USAGE> subdomain\t-- Use it to find vaild subdomain\n\t scanner\t-- Use it to find vulnerability\n\t exit\t\t-- Use it to exit VooBar''')
elif cmd == 'subdomain':
subdomain()
elif cmd == 'scanner':
scanner()
elif cmd == 'exit' or cmd == 'quit':
sys.exit()
elif cmd == 'clean' or cmd == 'clear':
if os.name == 'nt':
os.system('cls')
banner()
else:
os.system('clear')
banner()
else:
print('[+] \033[1;31;40mCommand is not defined\033[0m [+]')
except KeyboardInterrupt as e:
print('\n[+] Type \'\033[1;32;40mexit\033[0m\' or \'\033[1;32;40mquit\033[0m\' to exit [+]')
def subdomain():
load = None
inputFile = None
outputFile = None
while True:
try:
path = input('\033[1;31;40mvoobar\033[0m>\033[1;33;40mmodule\033[0m(\033[1;31;40msubdomain\033[0m)>').lower()
if path == 'help':
print('''<USAGE> show options\t-- Use it to show options\n\t load\t\t-- Use it to load input\n\t output\t\t-- Use it to save output\n\t run\t\t-- Use it to start this tool\n\t back\t\t-- Use to go back menu\n\t find\t\t-- Use it for subdomain enumeration ''')
elif path == 'run':
try:
if inputFile != None and outputFile != None:
with open(inputFile, 'r') as f:
fill = f.read().rstrip('\n')
with open('temp.txt', 'w') as f:
f.write(re.sub(r'(?m)$', r'/', fill))
f.close()
f = open('temp.txt', 'r')
try:
for i in f:
if '://' in i:
try:
s = i.split('/')
load = s[2]
except:
load = i
elif '/' in i:
try:
a = i.split('/')
load = a[0]
except:
try:
s = i.split('/')
load = s[2]
except:
load = i
else:
load = i
VooCode.VooCode('http://'+load,outputFile)
f.close()
time.sleep(3)
os.remove('temp.txt')
except:
print('error')
else:
print('[+] \033[1;31;40mBoth parameter is required\033[0m [+] ')
except:
print('[+] \033[1;32;40mSet valid file to start\033[0m [+]')
elif 'load' in path:
a = path.split(' ')
inputFile = a[1]
print('Load > '+inputFile)
elif 'output ' in path:
c = path.split(' ')
outputFile = c[1]
print('Output > '+outputFile)
elif 'find' in path:
try:
d = path.split(' ')
domain = d[1]
try:
domainOutput = d[2]
except:
domainOutput = None
if domainOutput!= None:
subdomains = sublist3r.main(domain, None, domainOutput, ports= None, silent=False, verbose= False, enable_bruteforce= False, engines=None)
else:
print('[+] Both parameter is required [+]')
except:
print('[+] \033[1;32;40mfind <domain> <output>\033[0m [+] \n[+] \033[1;32;40mEG: find google.com google.txt\033[0m [+]')
elif path == 'show options':
table = BeautifulTable()
table.append_row(['Load', inputFile])
table.append_row(['Output',outputFile])
print(table)
elif path == 'back':
menu()
elif path == 'clean' or path == 'clear':
if os.name == 'nt':
os.system('cls')
banner()
else:
os.system('clear')
banner()
else:
print('[+] \033[1;31;40mCommand not defined\033[0m [+]')
except KeyboardInterrupt as e:
print('\n[+] use \'\033[1;32;40mback\033[0m\' to enter in menu [+]')
def scanner():
while True:
try:
cmd = input('\033[1;31;40mvoobar\033[0m>\033[1;33;40mmodule\033[0m(\033[1;31;40mscanner\033[0m)>').lower()
if cmd == 'back':
menu()
elif cmd == 'help':
print('<Modules>\t back\t\t -- Use it go back in menu\n\t\t corsfinder\t -- Use it to find cors vulnerability [ \033[1;32;40mAutomatic\033[0m ]\n\t\t clickjacker\t -- Use it to find clickjacking vulnerability [ \033[1;32;40mAutomatic\033[0m ]')
elif cmd == 'clickjacker':
clickjacker()
elif cmd == 'corsfinder':
corsfinder()
elif cmd == 'clean' or cmd == 'clear':
if os.name == 'nt':
os.system('cls')
banner()
else:
os.system('clear')
banner()
else:
print('[+] \033[1;31;40mCommand not defined\033[0m [+]')
except KeyboardInterrupt as e:
print('\n[+] use \'\033[1;32;40mback\033[0m\' to enter in menu ')
def clickjacker():
use = None
load = None
while True:
try:
cmd = input('\033[1;31;40mvoobar\033[0m>\033[1;33;40mmodule\033[0m(\033[1;31;40mscanner\033[0m)[\033[1;33;40mclickjacker\033[0m]>').lower()
if cmd == 'back':
scanner()
elif cmd == 'help':
print('\033[1;31;40m[+]\033[0m load\t-- Use it load URL list to find vulnerability \n\033[1;31;40m[+]\033[0m use\t\t-- Use it to find vulnerability in sigle URL\n\033[1;31;40m[+]\033[0m run\t\t-- Use it to start finding')
elif 'load' in cmd:
try:
load = cmd.split(' ')
load = load[1]
print('Load > '+load)
except:
print('[+] <USAGE> load <filename> [+]\n[+] EG: load URL.txt [+]')
elif cmd == 'show options':
table = BeautifulTable()
table.append_row(['load', load])
table.append_row(['use',use])
print(table)
elif 'use' in cmd:
try:
use = cmd.split(' ')
use = use[1]
print('Use > '+use)
except:
print('[+] <USAGE> use <URL> [+]\n[+] EG: use google.com [+]')
elif cmd == 'run':
if use != None and load != None:
print('[+] You can\'t use both options together [+]')
elif load != None:
col_width = 40
with open(load, 'r') as f:
fill = f.read().rstrip('\n')
with open('temp.txt', 'w') as f:
f.write(re.sub(r'(?m)$', r'/', fill))
f.close()
f = open('temp.txt', 'r')
try:
for i in f:
if '://' in i:
try:
s = i.split('/')
load = s[2]
except:
load = i
elif '/' in i:
try:
a = i.split('/')
load = a[0]
except:
try:
s = i.split('/')
load = s[2]
except:
load = i
else:
load = i
x = requests.get('http://'+load)
if 'x-frame-options' not in str(x.headers).lower():
print("+"+"-"*col_width+"-"+"-"*col_width+"+")
print("|"+'\033[1;32;40mvulnerable\033[0m'.center(col_width)+" >> "+load.center(col_width))
print("+"+"-"*col_width+"-"+"-"*col_width+"+")
else:
print("+"+"-"*col_width+"-"+"-"*col_width+"+")
print("|"+'\033[1;31;40mnot vulnerable\033[0m'.center(col_width)+" >> "+load.center(col_width))
print("+"+"-"*col_width+"-"+"-"*col_width+"+")
except:
print('[+] Something went wrong [+]')
sys.exit()
load = None
f.close()
time.sleep(3)
os.remove('temp.txt')
elif use != None:
if '://' in use:
a = use.split('://')
a = a[1]
else:
a = use
x = requests.get('http://'+a)
if 'x-frame-options' not in str(x.headers).lower():
print('[+] \033[1;32;40mWebsite is vulnerable\033[0m [+]')
else:
print('[+] \033[1;31;40mWebsite is not vulnerable\033[0m [+]')
else:
print('someting went wrong')
elif cmd == 'clean' or cmd == 'clear':
if os.name == 'nt':
os.system('cls')
banner()
else:
os.system('clear')
banner()
else:
print('[+] \033[1;31;40mCommand not defined\033[0m [+]')
except KeyboardInterrupt as e:
print('\n[+] use \'\033[1;32;40mback\033[0m\' to enter in menu ')
def corsfinder():
load = None
use = None
while True:
try:
cmd = input('\033[1;31;40mvoobar\033[0m>\033[1;33;40mmodule\033[0m(\033[1;31;40mscanner\033[0m)[\033[1;33;40mcorsfinder\033[0m]>').lower()
if cmd == 'back':
scanner()
elif cmd == 'help':
print('\033[1;31;40m[+]\033[0m load\t-- Use it load URL list to find vulnerability \n\033[1;31;40m[+]\033[0m use\t\t-- Use it to find vulnerability in sigle URL\n\033[1;31;40m[+]\033[0m run\t\t-- Use it to start finding')
elif 'load' in cmd:
try:
a = cmd.split(' ')
load = a[1]
print('Load > '+load)
except:
print('[+] <USAGE> load <filename> [+]\n[+] EG: load URL.txt [+]')
elif 'use' in cmd:
try:
b = cmd.split(' ')
use = b[1]
print('Use > '+use)
except:
print('[+] <USAGE> use <URL> [+]\n[+] EG: use google.com [+]')
elif cmd == 'show options':
table = BeautifulTable()
table.append_row(['load', load])
table.append_row(['use',use])
print(table)
elif cmd == 'run':
if load != None and use != None:
print('[+] You can\'t use both options together [+]')
elif load != None:
with open(load, 'r') as f:
fill = f.read().rstrip('\n')
with open('temp.txt', 'w') as f:
f.write(re.sub(r'(?m)$', r'/', fill))
f.close()
f = open('temp.txt', 'r')
try:
for i in f:
if '://' in i:
try:
s = i.split('/')
load = s[2]
except:
load = i
elif '/' in i:
try:
a = i.split('/')
load = a[0]
except:
try:
s = i.split('/')
load = s[2]
except:
load = i
else:
load = i
payload = 'https://'+load+'.evil.com'
header = {'Origin':payload}
try:
col_width = 40
x = requests.get('http://'+load+'/', headers=header)
if '\\\'access-control-allow-origin\\\': '+'\\\''+payload+'\\\'' and 'access-control-allow-credentials' in str(x.headers).lower():
msg = '\033[1;32;40mtarget is vulnerable\033[0m'
print("+"+"-"*col_width+"+"+"-"*col_width+"+")
print("|"+load.center(col_width)+"|"+msg.center(col_width))
print("+"+"-"*col_width+"+"+"-"*col_width+"+")
else:
msg = '\033[1;31;40mtarget is not vulnerable\033[0m'
print("+"+"-"*col_width+"+"+"-"*col_width+"+")
print("|"+load.center(col_width)+"|"+msg.center(col_width))
print("+"+"-"*col_width+"+"+"-"*col_width+"+")
except Exception as e:
print('[+] Someting went wrong [+]')
sys.exit()
except KeyboardInterrupt:
print('[+] aborted by user [+] ')
load = None
f.close()
time.sleep(3)
os.remove('temp.txt')
elif use != None:
#Access-Control-Allow-Origin: https://attacker.com Access-Control-Allow-Credentials: true
if '://' in use:
s = use.split('/')
use = s[2]
else:
s = use.split('/')
use = s[0]
payload = 'http://'+use+'.evil.com'
header = {'Origin': payload}
try:
x = requests.get('http://'+use, headers=header)
if '\\\'access-control-allow-origin\\\': '+'\\\''+payload+'\\\'' and 'access-control-allow-credentials' in str(x.headers).lower():
print('[+] \033[1;32;40mtarget is vulnerable\033[0m [+]')
else:
print('[+] \033[1;31;40mtarget is not vulnerable\033[0m [+]')
except:
print('[+] Someting went wrong try again [+]')
else:
print('[+] You should set at least one parameter i.e : \033[1;32;40mload\033[0m or \033[1;32;40muse\033[0m [+] ')
elif cmd == 'clean' or cmd == 'clear':
if os.name == 'nt':
os.system('cls')
banner()
else:
os.system('clear')
banner()
else:
print('[+] \033[1;31;40mCommand not defined\033[0m [+]')
except KeyboardInterrupt as e:
print('\n[+] use \'\033[1;32;40mback\033[0m\' to enter in menu ')
def checkingUpdate():
url = 'http://amanrawat.000webhostapp.com/voobar/check.php'
try:
print('\t \033[1;32;40mChecking for update, please wait... \033[0m ')
time.sleep(3)
x = requests.get(url).text
except:
print('[+] \033[1;31;40mFailed to connect \033[0m [+]')
sys.exit()
if version == x:
pass
if os.name == 'nt':
os.system('cls')
banner()
else:
os.system('clear')
banner()
else:
print('\033[1;31;40mvoobar\033[0m> [+] \033[1;32;40mYeah! voobar {} is available. \033[0m ( \033[1;31;40mUpdate required!\033[0m )\n\t [+] \033[1;32;40mUpdate to latest version for more features.\033[0m'.format(x))
sys.exit()
banner()
checkingUpdate()
menu()