From 5029d67e4f37f65ee192d7d993a708a5930c575a Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 20 Oct 2020 12:54:22 +0200 Subject: [PATCH] Minor update regarding the #4388 --- lib/core/agent.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/agent.py b/lib/core/agent.py index 67dd2b505..fe40f2501 100644 --- a/lib/core/agent.py +++ b/lib/core/agent.py @@ -1225,7 +1225,7 @@ class Agent(object): prefix += " WHERE %s" % conf.dumpWhere query = prefix - if suffix: + if suffix and not all(re.search(r"ORDER BY", _, re.I) is not None for _ in (query, suffix)): query += suffix return query diff --git a/lib/core/settings.py b/lib/core/settings.py index dccf9c3b0..4d2a16d35 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.4.10.12" +VERSION = "1.4.10.13" 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)