Skip to content

Commit a14a3d0

Browse files
committed
Fixes #5113
1 parent 3aae184 commit a14a3d0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.6.5.5"
23+
VERSION = "1.6.6.0"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/utils/hashdb.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ def endTransaction(self):
198198
threadData.inTransaction = False
199199
except sqlite3.OperationalError:
200200
pass
201+
except sqlite3.ProgrammingError:
202+
self.cursor = None
203+
threadData.inTransaction = False
204+
return
201205
else:
202206
return
203207

0 commit comments

Comments
 (0)