mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Oracle's XMLType doesn't like '#' char too
This commit is contained in:
parent
761ec7529a
commit
ac5a752b12
4 changed files with 6 additions and 6 deletions
|
|
@ -180,7 +180,7 @@ def __errorReplaceChars(value):
|
|||
retVal = value
|
||||
|
||||
if value:
|
||||
retVal = retVal.replace(kb.chars.space, " ").replace(kb.chars.dollar, "$").replace(kb.chars.at, "@")
|
||||
retVal = retVal.replace(kb.chars.space, " ").replace(kb.chars.dollar, "$").replace(kb.chars.at, "@").replace(kb.chars.hash_, "#")
|
||||
|
||||
return retVal
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue