Skip to content

Commit 4e84b74

Browse files
committed
Fixes #3693
1 parent d322513 commit 4e84b74

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

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

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

plugins/dbms/mssqlserver/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def searchTable(self):
261261
kb.hintValue = tbl
262262
foundTbls[db].append(tbl)
263263

264-
for db, tbls in foundTbls.items():
264+
for db, tbls in list(foundTbls.items()):
265265
if len(tbls) == 0:
266266
foundTbls.pop(db)
267267

0 commit comments

Comments
 (0)