mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-08-02 19:30:10 +03:00
Merge c2159dbf93
into 2de12ef4a2
This commit is contained in:
commit
0b4583b282
|
@ -2810,7 +2810,7 @@ def decodeIntToUnicode(value):
|
|||
if isinstance(value, int):
|
||||
try:
|
||||
# http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_ord
|
||||
if Backend.getIdentifiedDbms() in (DBMS.MYSQL,):
|
||||
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.ORACLE,):
|
||||
_ = "%x" % value
|
||||
if len(_) % 2 == 1:
|
||||
_ = "0%s" % _
|
||||
|
|
Loading…
Reference in New Issue
Block a user