-
-
Notifications
You must be signed in to change notification settings - Fork 792
/
cors.py
executable file
·318 lines (262 loc) · 9.36 KB
/
cors.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
#!/usr/bin/python3
import os
import sys
import re
import time
import random
import argparse
import requests
import tldextract
from threading import Thread
from queue import Queue
from urllib.parse import urlparse
from colored import fg, bg, attr
MAX_EXCEPTION = 3
MAX_VULNERABLE = 3
# disable "InsecureRequestWarning: Unverified HTTPS request is being made."
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
def banner():
print("""
___ ___ _ __ ___ _ __ _ _
/ __/ _ \| '__/ __| | '_ \| | | |
| (_| (_) | | \__ \ _ | |_) | |_| |
\___\___/|_| |___/ (_) | .__/ \__, |
|_| |___/
by @gwendallecoguic
""")
pass
banner()
def generatePayloads( url ):
t_url_parse = urlparse( url )
t_host_parse = tldextract.extract( t_url_parse.netloc )
domain = t_host_parse.domain + '.' + t_host_parse.suffix
t_url_payloads = []
for payload in t_payloads:
payload = payload.replace( 'www.domain.com', t_url_parse.netloc ).replace( 'domain.com', domain )
t_url_payloads.append( payload )
# print( t_url_payloads )
return t_url_payloads
def testURL( url ):
time.sleep( 0.01 )
if _verbose <= 1:
sys.stdout.write( 'progress: %d/%d\r' % (t_multiproc['n_current'],t_multiproc['n_total']) )
t_multiproc['n_current'] = t_multiproc['n_current'] + 1
t_url_payloads = generatePayloads( url )
for payload in t_url_payloads:
testPayload( url, payload )
def testPayload( url, payload ):
t_urlparse = urlparse(url)
u = t_urlparse.scheme + '_' + t_urlparse.netloc
if not u in t_exceptions:
t_exceptions[u] = 0
if t_exceptions[u] >= MAX_EXCEPTION:
if _verbose >= 3:
print("skip too many exceptions %s" % t_urlparse.netloc)
return
if not u in t_vulnerable:
t_vulnerable[u] = 0
if t_vulnerable[u] >= MAX_VULNERABLE:
if _verbose >= 3:
print("skip already vulnerable %s" % t_urlparse.netloc)
return
headers = { "Origin":payload, "Referer":payload }
headers.update( t_custom_headers )
try:
r = requests.head( url, headers=headers, timeout=5, verify=False )
except Exception as e:
t_exceptions[u] = t_exceptions[u] + 1
if _verbose >= 3:
sys.stdout.write( "%s[-] error occurred: %s%s\n" % (fg('red'),e,attr(0)) )
return
if 'Content-Type' in r.headers:
content_type = r.headers['Content-Type']
else:
content_type = '-'
vuln = '-'
if 'Access-Control-Allow-Credentials' in r.headers and r.headers['Access-Control-Allow-Credentials'] == 'true':
if 'Access-Control-Allow-Origin' in r.headers:
if r.headers['Access-Control-Allow-Origin'] == 'null' or 'evil' in r.headers['Access-Control-Allow-Origin']:
vuln = 'VULNERABLE'
if vuln == 'VULNERABLE':
t_vulnerable[u] = t_vulnerable[u] + 1
output = '%sC=%d\t\tT=%s\t\tV=%s\t\tP=%s\n' % (url.ljust(t_multiproc['u_max_length']),r.status_code,content_type,vuln,payload)
fp = open( t_multiproc['f_output'], 'a+' )
fp.write( output )
fp.close()
if _verbose >= 2 or (_verbose >= 1 and vuln == 'VULNERABLE'):
if vuln == 'VULNERABLE':
sys.stdout.write( '%s%s%s' % (fg('light_red'),output,attr(0)) )
else:
sys.stdout.write( output )
if _verbose >= 3:
sys.stdout.write( '%s%s%s\n' % (fg('dark_gray'),headers,attr(0)) )
parser = argparse.ArgumentParser()
parser.add_argument( "-d","--header",help="custom headers, example: cookie1=value1;cookie2=value2...", action="append" )
parser.add_argument( "-a","--path",help="set paths list" )
parser.add_argument( "-p","--payloads",help="set payloads list" )
parser.add_argument( "-o","--hosts",help="set host list (required or -u)" )
# parser.add_argument( "-r","--redirect",help="follow redirection" )
parser.add_argument( "-s","--scheme",help="scheme to use, default=http,https" )
parser.add_argument( "-t","--threads",help="threads, default 10" )
parser.add_argument( "-u","--urls",help="set url list (required or -o)" )
parser.add_argument( "-v","--verbose",help="display output, 0=nothing, 1=only vulnerable, 2=all requests, 3=full debug, default: 1" )
parser.parse_args()
args = parser.parse_args()
if args.scheme:
t_scheme = args.scheme.split(',')
else:
t_scheme = ['http','https']
t_custom_headers = {}
if args.header:
for header in args.header:
if ':' in header:
tmp = header.split(':')
t_custom_headers[ tmp[0].strip() ] = tmp[1].strip()
t_hosts = []
if args.hosts:
if os.path.isfile(args.hosts):
fp = open( args.hosts, 'r' )
t_hosts = fp.read().strip().split("\n")
fp.close()
else:
t_hosts.append( args.hosts )
n_hosts = len(t_hosts)
sys.stdout.write( '%s[+] %d hosts found: %s%s\n' % (fg('green'),n_hosts,args.hosts,attr(0)) )
t_urls = []
if args.urls:
if os.path.isfile(args.urls):
fp = open( args.urls, 'r' )
t_urls = fp.read().strip().split("\n")
fp.close()
else:
t_urls.append( args.urls )
n_urls = len(t_urls)
sys.stdout.write( '%s[+] %d urls found: %s%s\n' % (fg('green'),n_urls,args.urls,attr(0)) )
if n_hosts == 0 and n_urls == 0:
parser.error( 'hosts/urls list missing' )
t_path = [ '' ]
if args.path:
if os.path.isfile(args.path):
fp = open( args.path, 'r' )
t_path = fp.read().strip().split("\n")
fp.close()
else:
t_path.append( args.path )
n_path = len(t_path)
sys.stdout.write( '%s[+] %d path found: %s%s\n' % (fg('green'),n_path,args.path,attr(0)) )
if args.payloads:
t_payloads = []
if os.path.isfile(args.payloads):
fp = open( args.payloads, 'r' )
t_payloads = fp.read().strip().split("\n")
fp.close()
else:
t_payloads.append( args.payloads )
n_payloads = len(t_payloads)
sys.stdout.write( '%s[+] %d payloads found: %s%s\n' % (fg('green'),n_payloads,args.payloads,attr(0)) )
else:
n_payloads = 0
if args.verbose:
_verbose = int(args.verbose)
else:
_verbose = 1
if args.threads:
_threads = int(args.threads)
else:
_threads = 10
if not n_payloads:
t_payloads = [
'https://www.evildomain.com',
'https://evil.www.domain.com',
'https://evil.domain.com',
'https://www.domain.com.evil.com',
'https://www.domain.comevil',
'https://www.evil.com',
'https://domain.com%60.evil.com',
'null',
# source: https://www.bedefended.com/papers/cors-security-guide
'https://www.domain.com".evil.com',
'https://www.domain.com\'.evil.com',
'https://www.domain.com!.evil.com',
'https://www.domain.com$.evil.com',
'https://www.domain.com%0b.evil.com',
'https://www.domain.com%60.evil.com',
'https://www.domain.com&.evil.com',
'https://www.domain.com(.evil.com',
'https://www.domain.com).evil.com',
'https://www.domain.com*.evil.com',
'https://www.domain.com,.evil.com',
'https://www.domain.com;.evil.com',
'https://www.domain.com=.evil.com',
'https://www.domain.com+.evil.com',
'https://www.domain.com^.evil.com',
'https://www.domain.com`.evil.com',
'https://www.domain.com{.evil.com',
'https://www.domain.com}.evil.com',
'https://www.domain.com|.evil.com',
'https://www.domain.com[.evil.com',
'https://www.domain.com].evil.com',
'https://www.domain.com~.evil.com',
'https://[email protected]',
'https://www.domain.com-.evil.com',
'https://www.domain.com_.evil.com',
]
t_totest = []
u_max_length = 0
d_output = os.getcwd()+'/cors'
f_output = d_output + '/' + 'output'
if not os.path.isdir(d_output):
try:
os.makedirs( d_output )
except Exception as e:
sys.stdout.write( "%s[-] error occurred: %s%s\n" % (fg('red'),e,attr(0)) )
exit()
sys.stdout.write( '%s[+] options are -> threads:%d, verbose:%d%s\n' % (fg('green'),_threads,_verbose,attr(0)) )
sys.stdout.write( '[+] computing host and payload list...\n' )
for scheme in t_scheme:
for host in t_hosts:
for path in t_path:
u = scheme + '://' + host.strip() + path
t_totest.append( u )
l = len(u)
if l > u_max_length:
u_max_length = l
for url in t_urls:
for path in t_path:
u = url.strip() + path
t_totest.append( u )
l = len(u)
if l > u_max_length:
u_max_length = l
n_totest = len(t_totest)
sys.stdout.write( '%s[+] %d urls created.%s\n' % (fg('green'),n_totest,attr(0)) )
sys.stdout.write( '[+] testing...\n' )
random.shuffle(t_totest)
# print("\n".join(t_totest))
# exit()
t_exceptions = {}
t_vulnerable = {}
t_multiproc = {
'n_current': 0,
'n_total': n_totest,
'u_max_length': u_max_length+5,
'd_output': d_output,
'f_output': f_output,
}
def doWork():
while True:
url = q.get()
testURL( url )
q.task_done()
q = Queue( _threads*2 )
for i in range(_threads):
t = Thread( target=doWork )
t.daemon = True
t.start()
try:
for url in t_totest:
q.put( url )
q.join()
except KeyboardInterrupt:
sys.exit(1)