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 a48ce3c commit c8d06d1Copy full SHA for c8d06d1
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.25"
+VERSION = "1.5.9.26"
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)
sqlmap.py
@@ -515,6 +515,7 @@ def main():
515
516
if conf.get("hashDB"):
517
conf.hashDB.flush(True)
518
+ conf.hashDB.close() # NOTE: because of PyPy
519
520
if conf.get("harFile"):
521
try:
0 commit comments