Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0125198

Browse files
committed
minor fix
1 parent cbf3843 commit 0125198

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def removePayloadDelimiters(self, inpStr, urlencode_=True):
627627
regObj = getCompiledRegex("(?P<result>%s.*?%s)" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER))
628628

629629
for match in regObj.finditer(inpStr):
630-
retVal = retVal.replace(match.group("result"), urlencode(match.group("result")[1:-1]))
630+
retVal = retVal.replace(match.group("result"), urlencode(match.group("result")[1:-1], convall=True))
631631
else:
632632
retVal = retVal.replace(PAYLOAD_DELIMITER, '')
633633

0 commit comments

Comments
 (0)