diff --git a/lib/core/dicts.py b/lib/core/dicts.py index 7d6d0f04d..29389b333 100644 --- a/lib/core/dicts.py +++ b/lib/core/dicts.py @@ -412,6 +412,7 @@ PART_RUN_CONTENT_TYPES = { HTML_ENTITIES = { "quot": 34, "amp": 38, + "apos": 39, "lt": 60, "gt": 62, "nbsp": 160, diff --git a/lib/core/settings.py b/lib/core/settings.py index 43acc66b7..35479c61e 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.5.1.5" +VERSION = "1.5.1.6" 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)