mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Merge pull request #475 from Meatballs1/hsql_clean
HSQL Payloads and Query Support
This commit is contained in:
commit
aeb83ba651
17 changed files with 764 additions and 10 deletions
|
|
@ -3448,7 +3448,11 @@ def decodeHexValue(value):
|
|||
retVal = retVal.decode("utf-16-le")
|
||||
except UnicodeDecodeError:
|
||||
pass
|
||||
|
||||
elif Backend.isDbms(DBMS.HSQL):
|
||||
try:
|
||||
retVal = retVal.decode("utf-16-be")
|
||||
except UnicodeDecodeError:
|
||||
pass
|
||||
if not isinstance(retVal, unicode):
|
||||
retVal = getUnicode(retVal, "utf8")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue