mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Fix for cases when parameter name is urlencoded
This commit is contained in:
parent
ae8c12c9c3
commit
637d3cbaf7
2 changed files with 4 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ def paramToDict(place, parameters=None):
|
|||
parts = element.split("=")
|
||||
|
||||
if len(parts) >= 2:
|
||||
parameter = parts[0].replace(" ", "")
|
||||
parameter = urldecode(parts[0].replace(" ", ""))
|
||||
|
||||
if conf.paramDel and conf.paramDel == '\n':
|
||||
parts[-1] = parts[-1].rstrip()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue