mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Update of vuln tests
This commit is contained in:
parent
c2b929301e
commit
e4a2ac8277
3 changed files with 5 additions and 1 deletions
|
|
@ -107,6 +107,9 @@ class ReqHandler(BaseHTTPRequestHandler):
|
|||
else:
|
||||
params.update(parse_qs(self.data))
|
||||
|
||||
for name in self.headers:
|
||||
params[name.lower()] = self.headers[name]
|
||||
|
||||
for key in params:
|
||||
if params[key] and isinstance(params[key], (tuple, list)):
|
||||
params[key] = params[key][-1]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue