From 1eeb6c1f5b8f149101058d203e14125ccddbf526 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 17 Apr 2019 17:20:04 +0200 Subject: [PATCH] Related to the #3588 --- lib/core/settings.py | 2 +- lib/core/threads.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 53427d219..39a61c592 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.15" +VERSION = "1.3.4.16" 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) diff --git a/lib/core/threads.py b/lib/core/threads.py index bf871a11d..5444d460f 100644 --- a/lib/core/threads.py +++ b/lib/core/threads.py @@ -100,7 +100,7 @@ def exceptionHandledFunction(threadFunction, silent=False): errMsg = ex.message if isinstance(ex, SqlmapBaseException) else "%s: %s" % (type(ex).__name__, ex.message) logger.error("thread %s: '%s'" % (threading.currentThread().getName(), errMsg)) - if conf.get("verbose") > 1: + if conf.get("verbose") > 1 and not isinstance(ex, (SqlmapUserQuitException,)): traceback.print_exc() def setDaemon(thread):