mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Another patch for #1539
This commit is contained in:
@@ -2950,7 +2950,7 @@ def decodeIntToUnicode(value):
|
|||||||
|
|
||||||
if Backend.isDbms(DBMS.MSSQL):
|
if Backend.isDbms(DBMS.MSSQL):
|
||||||
retVal = getUnicode(raw, "UTF-16-BE")
|
retVal = getUnicode(raw, "UTF-16-BE")
|
||||||
elif Backend.isDbms(DBMS.PGSQL):
|
elif Backend.getIdentifiedDbms() in (DBMS.PGSQL, DBMS.ORACLE):
|
||||||
retVal = unichr(value)
|
retVal = unichr(value)
|
||||||
else:
|
else:
|
||||||
retVal = getUnicode(raw, conf.charset)
|
retVal = getUnicode(raw, conf.charset)
|
||||||
|
|||||||
Reference in New Issue
Block a user