mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-24 03:44:13 +03:00
Revert wrong fix
This commit is contained in:
parent
17486e472a
commit
f6a17cb1a8
|
@ -636,7 +636,7 @@ class Agent:
|
|||
regObj = getCompiledRegex("(?P<result>%s.*?%s)" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER))
|
||||
|
||||
for match in regObj.finditer(inpStr):
|
||||
retVal = retVal.replace(match.group("result"), match.group("result").strip(PAYLOAD_DELIMITER))
|
||||
retVal = retVal.replace(match.group("result"), urlencode(match.group("result").strip(PAYLOAD_DELIMITER), convall=True))
|
||||
else:
|
||||
retVal = retVal.replace(PAYLOAD_DELIMITER, '')
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user