From 3cb48ffdc3c52ee28db7c24c7e10927c873bb381 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 12 Apr 2019 11:16:42 +0200 Subject: [PATCH] Minor adjustments for issue (hash) creation --- lib/core/common.py | 3 +++ lib/core/settings.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index 2458bf4d1..50853d653 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -3483,6 +3483,9 @@ def createGithubIssue(errMsg, excMsg): _ = re.sub(r"\s+line \d+", "", _) _ = re.sub(r'File ".+?/(\w+\.py)', r"\g<1>", _) _ = re.sub(r".+\Z", "", _) + _ = re.sub(r"(Unicode[^:]*Error:).+", r"\g<1>", _) + _ = re.sub(r"= _", "= ", _) + key = hashlib.md5(_).hexdigest()[:8] if key in issues: diff --git a/lib/core/settings.py b/lib/core/settings.py index bc17d0c27..f0c2bf4a0 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -17,7 +17,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME from lib.core.enums import OS # sqlmap version (...) -VERSION = "1.3.4.4" +VERSION = "1.3.4.5" 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)