mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-11 02:09:04 +00:00
Proper patch for an Issue #1539
This commit is contained in:
@@ -2944,7 +2944,7 @@ def decodeIntToUnicode(value):
|
|||||||
try:
|
try:
|
||||||
if value > 255:
|
if value > 255:
|
||||||
if Backend.isDbms(DBMS.MSSQL):
|
if Backend.isDbms(DBMS.MSSQL):
|
||||||
encoding="UTF-16-LE" if isDBMSVersionAtLeast("2012") else "UTF-16-BE"
|
encoding = "UTF-16-BE"
|
||||||
else:
|
else:
|
||||||
encoding = conf.charset
|
encoding = conf.charset
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user