File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3046,7 +3046,10 @@ def decodeIntToUnicode(value):
30463046 _ = "0%s" % _
30473047 raw = hexdecode (_ )
30483048
3049- if Backend .isDbms (DBMS .MSSQL ):
3049+ if Backend .isDbms (DBMS .MYSQL ):
3050+ # https://github.com/sqlmapproject/sqlmap/issues/1531
3051+ retVal = getUnicode (raw , conf .charset or UNICODE_ENCODING )
3052+ elif Backend .isDbms (DBMS .MSSQL ):
30503053 retVal = getUnicode (raw , "UTF-16-BE" )
30513054 elif Backend .getIdentifiedDbms () in (DBMS .PGSQL , DBMS .ORACLE ):
30523055 retVal = unichr (value )
Original file line number Diff line number Diff line change 1919from lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.5.47 "
22+ VERSION = "1.0.5.48 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
You can’t perform that action at this time.
0 commit comments