This commit is contained in:
Miroslav Stampar 2020-05-11 11:13:06 +02:00
parent 3c36b186ad
commit a8c3d17583
2 changed files with 8 additions and 12 deletions

View File

@ -18,7 +18,7 @@ from lib.core.enums import OS
from thirdparty.six import unichr as _unichr
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.4.5.10"
VERSION = "1.4.5.11"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

View File

@ -237,9 +237,9 @@ def unescape(data, entities, encoding=DEFAULT_ENCODING):
repl = entities.get(ent)
if repl is not None:
if type(repl) != type("") and encoding is not None:
if hasattr(repl, "decode") and encoding is not None:
try:
repl = repl.encode(encoding)
repl = repl.decode(encoding)
except UnicodeError:
repl = ent
else:
@ -255,15 +255,11 @@ def unescape_charref(data, encoding):
name, base= name[1:], 16
elif not name.isdigit():
base = 16
uc = _unichr(int(name, base))
if encoding is None:
return uc
else:
try:
repl = uc.encode(encoding)
except UnicodeError:
repl = "&#%s;" % data
return repl
try:
return _unichr(int(name, base))
except:
return data
def get_entitydefs():
from codecs import latin_1_decode