From 1a026e08dc23974dc735e15f4eb371464ea1bb8e Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 31 Oct 2019 21:27:48 +0100 Subject: [PATCH] Fixes special cases (e.g. cookie with asterisk skipped GET/POST tests) --- lib/controller/controller.py | 3 --- lib/core/settings.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/controller/controller.py b/lib/controller/controller.py index e2df21bcf..1764cb922 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -485,9 +485,6 @@ def start(): if skip: continue - if kb.testOnlyCustom and place not in (PLACE.URI, PLACE.CUSTOM_POST, PLACE.CUSTOM_HEADER): - continue - if place not in conf.paramDict: continue diff --git a/lib/core/settings.py b/lib/core/settings.py index b1276aa15..ee18feb9c 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.3.10.36" +VERSION = "1.3.10.37" 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)