From b36d8248a44af2e5d241aba4517c82d183c2793b Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 4 Jan 2021 13:51:51 +0100 Subject: [PATCH] More fine-tuning for #4505 (in case of --no-escape) --- lib/core/dicts.py | 1 + lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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)