From 7d5883f1edb65eb7185c94ab4a5f8e495b700aab Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 27 Dec 2021 11:19:49 +0100 Subject: [PATCH] Dirty patch for #4919 --- lib/core/settings.py | 2 +- lib/core/target.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 4637bb19e..45e2565c3 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.5.12.5" +VERSION = "1.5.12.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) diff --git a/lib/core/target.py b/lib/core/target.py index 6a459c831..b51771d93 100644 --- a/lib/core/target.py +++ b/lib/core/target.py @@ -430,8 +430,8 @@ def _setHashDB(): if not conf.hashDBFile: conf.hashDBFile = conf.sessionFile or os.path.join(conf.outputPath, SESSION_SQLITE_FILE) - if os.path.exists(conf.hashDBFile): - if conf.flushSession: + if conf.flushSession: + if os.path.exists(conf.hashDBFile): if conf.hashDB: conf.hashDB.closeAll()