mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Bug fix for boolean (multithreaded Ctrl+C) resumed values
This commit is contained in:
@@ -444,7 +444,8 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||
abortedFlag = True
|
||||
|
||||
finally:
|
||||
value = [partialValue[_] if _ < len(partialValue) else threadData.shared.value[_] for _ in xrange(length)]
|
||||
value = [_ for _ in partialValue]
|
||||
value.extend(_ for _ in threadData.shared.value)
|
||||
|
||||
infoMsg = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user