mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-10 18:21:14 +00:00
Minor bug fix
This commit is contained in:
parent
fcada4df0f
commit
617edf7fc2
1 changed files with 1 additions and 1 deletions
|
|
@ -655,7 +655,7 @@ class Agent:
|
|||
retVal = inpStr
|
||||
|
||||
if inpStr:
|
||||
regObj = getCompiledRegex("%s(.*?)%s" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER))
|
||||
regObj = getCompiledRegex("(%s.*?%s)" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER))
|
||||
retVal = regObj.sub("%s%s%s" % (PAYLOAD_DELIMITER, payload, PAYLOAD_DELIMITER), inpStr)
|
||||
|
||||
return retVal
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue