Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d06d1 commit 08eeb0fCopy full SHA for 08eeb0f
2 files changed
lib/core/settings.py
@@ -20,7 +20,7 @@
20
from thirdparty.six import unichr as _unichr
21
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
-VERSION = "1.5.9.26"
+VERSION = "1.5.9.27"
24
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
25
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
26
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
lib/core/target.py
@@ -432,6 +432,9 @@ def _setHashDB():
432
433
if os.path.exists(conf.hashDBFile):
434
if conf.flushSession:
435
+ if conf.hashDB:
436
+ conf.hashDB.close()
437
+
438
try:
439
os.remove(conf.hashDBFile)
440
logger.info("flushing session file")
0 commit comments