revisit of Oracle error-based payloads (added replace for '@' as a problematic char for XMLType function)

This commit is contained in:
Miroslav Stampar
2011-07-23 06:07:00 +00:00
parent 8a00ca83af
commit a89140e1ce
4 changed files with 10 additions and 8 deletions

View File

@@ -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