-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeheader.py
executable file
·195 lines (153 loc) · 5.26 KB
/
beheader.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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#
# Usage:
# ./beheader.py <curl_syntax>
import copy
import gzip
import time
import argparse
import urllib.request
def print_info(message):
print('\033[92m\033[1m[INFO]\033[0m\033[0m ' + message)
def print_error(message):
print('\033[91m\033[1m[ERROR]\033[0m\033[0m ' + message)
exit()
def parseArgs():
parser = argparse.ArgumentParser(
usage='beheader.py curl [URL] [-X REQUEST] [-H HEADER] [-d DATA]')
parser.add_argument('-X', '--request', nargs=1, help='Request method')
parser.add_argument('-H', '--header', nargs=1, action='append',
help='Request headers')
parser.add_argument('-d', '--data', '--data-raw', '--data-binary',
nargs=1, action='append',
help='Request data')
return parser.parse_known_args()
def get_url(args):
for a in args:
if not a.startswith('-'):
return a
print_error('Missing URL!')
def get_rest_options(args):
optlist = []
for a in args:
if a.startswith('-'):
optlist.append(a)
return optlist
def get_method(args):
if args.request is not None:
return args.request[0]
if args.data is not None:
return 'POST'
return 'GET'
def header_list_to_dict(headerlist):
dict = {}
if headerlist is not None:
for h in headerlist:
parts = h[0].split(':')
key = parts[0]
value = ':'.join(parts[1:]).lstrip()
dict[key] = value
return dict
def data_list_to_str(datalist):
str = ''
if datalist is not None:
for d in datalist:
str += '&' + d[0]
str = str[1:]
return bytes(str, 'utf-8')
def call(reqdict):
request = urllib.request.Request(reqdict['url'],
data=reqdict['data'],
headers=reqdict['headers'])
request.method = reqdict['method']
try:
response = urllib.request.urlopen(request)
status = response.getcode()
rawcontent = response.read()
try:
content = rawcontent.decode('utf-8')
except UnicodeDecodeError:
content = gzip.decompress(rawcontent).decode('utf-8')
return status, content
except urllib.error.HTTPError as error:
return error.code, ''
def write_to_file(filename, content):
f = open(filename, 'w')
f.write(content)
f.close()
def iterate_headers(reqdict, repdict):
i = 0
iteratedict = copy.deepcopy(reqdict)
iteratedict['headers'] = {}
status, content = call(iteratedict)
if repdict['ref']['status'] == status \
and repdict['ref']['length'] == len(content):
return
for k, v in reqdict['headers'].items():
i += 1
repdict[i] = {}
iteratedict = copy.deepcopy(reqdict)
iteratedict['headers'].pop(k)
print_info('Check Header combination: ' + str(iteratedict['headers']))
status, content = call(iteratedict)
if repdict['ref']['status'] == status \
and repdict['ref']['length'] == len(content):
repdict[i]['necessary'] = False
else:
repdict[i]['necessary'] = True
repdict[i]['length'] = len(content)
repdict[i]['status'] = status
repdict[i]['content'] = content
repdict[i]['header'] = k
repdict[i]['headervalue'] = v
def generate_report(reqdict, repdict):
output = 'curl -X ' + reqdict['method'] \
+ ' "' + reqdict['url'] + '"'
if len(repdict) == 1:
print_info('Header is not needed ¯\\_(ツ)_/¯')
else:
requireheader = ''
for i in range(1, len(repdict)):
if repdict[i]['necessary'] is True:
requireheader += ', ' + repdict[i]['header']
output += ' -H \'' + repdict[i]['header'] \
+ ': ' + repdict[i]['headervalue'] + '\''
print_info('Must-have header(s): \033[93m\033[1m'
+ requireheader[2:] + '\033[0m\033[0m')
if len(reqdict['data']) > 0:
output += ' --data \'' + reqdict['data'].decode('utf-8') + '\''
if len(reqdict['options']) > 0:
for o in reqdict['options']:
output += ' ' + o
print(output)
write_to_file(str(int(time.time())) + '.curl', output)
def main():
requestdict = {}
reportdict = {}
args, rest = parseArgs()
if args.header is None:
print_error('Missing header!')
try:
rest.remove('curl')
except ValueError:
pass
requestdict['url'] = get_url(rest)
requestdict['method'] = get_method(args)
requestdict['data'] = data_list_to_str(args.data)
requestdict['options'] = get_rest_options(rest)
requestdict['headers'] = header_list_to_dict(args.header)
requestdict['rawheaders'] = args.header
refstatus, refcontent = call(requestdict)
reportdict['ref'] = {}
reportdict['ref']['status'] = refstatus
reportdict['ref']['length'] = len(refcontent)
reportdict['ref']['content'] = refcontent
reportdict['ref']['headers'] = requestdict['headers']
iterate_headers(requestdict, reportdict)
generate_report(requestdict, reportdict)
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
pass