mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 14:11:29 +00:00
minor fix
This commit is contained in:
@@ -627,7 +627,7 @@ class Agent:
|
|||||||
regObj = getCompiledRegex("(?P<result>%s.*?%s)" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER))
|
regObj = getCompiledRegex("(?P<result>%s.*?%s)" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER))
|
||||||
|
|
||||||
for match in regObj.finditer(inpStr):
|
for match in regObj.finditer(inpStr):
|
||||||
retVal = retVal.replace(match.group("result"), urlencode(match.group("result")[1:-1]))
|
retVal = retVal.replace(match.group("result"), urlencode(match.group("result")[1:-1], convall=True))
|
||||||
else:
|
else:
|
||||||
retVal = retVal.replace(PAYLOAD_DELIMITER, '')
|
retVal = retVal.replace(PAYLOAD_DELIMITER, '')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user