mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Fix for cases when parameter name is urlencoded
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user