Skip to content

Commit 1159c9c

Browse files
committed
1 parent cadbf17 commit 1159c9c

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
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.5.4.3"
21+
VERSION = "1.5.4.4"
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)

lib/techniques/blind/inference.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,10 @@ def blindThread():
504504
else:
505505
break
506506

507+
# NOTE: https://github.com/sqlmapproject/sqlmap/issues/4629
508+
if not isListLike(threadData.shared.value):
509+
break
510+
507511
with kb.locks.value:
508512
threadData.shared.value[currentCharIndex - 1 - firstChar] = val
509513
currentValue = list(threadData.shared.value)

0 commit comments

Comments
 (0)