mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Oracle XML based error payload has problems with char $ as with space
This commit is contained in:
parent
1abcd507b8
commit
b5c9ccb755
5 changed files with 19 additions and 6 deletions
|
|
@ -344,7 +344,7 @@ def checkSqlInjection(place, parameter, value):
|
|||
threadData.lastRequestUID else None, re.DOTALL | re.IGNORECASE)
|
||||
|
||||
if output:
|
||||
result = output.replace(kb.misc.space, " ") == "1"
|
||||
result = output == "1"
|
||||
|
||||
if result:
|
||||
infoMsg = "%s parameter '%s' is '%s' injectable " % (place, parameter, title)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue