mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-21 22:06:52 +00:00
revisit of Oracle error-based payloads (added replace for '@' as a problematic char for XMLType function)
This commit is contained in:
parent
8a00ca83af
commit
a89140e1ce
4 changed files with 10 additions and 8 deletions
|
|
@ -185,7 +185,7 @@ def __errorReplaceChars(value):
|
|||
retVal = value
|
||||
|
||||
if value:
|
||||
retVal = retVal.replace(kb.misc.space, " ").replace(kb.misc.dollar, "$")
|
||||
retVal = retVal.replace(kb.misc.space, " ").replace(kb.misc.dollar, "$").replace(kb.misc.at, "@")
|
||||
|
||||
return retVal
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue