mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Bug fix (privately reported: --technique=E --where='id=1')
This commit is contained in:
parent
536d9a597e
commit
65f227fe65
|
@ -444,8 +444,11 @@ def errorUse(expression, dump=False):
|
||||||
if not value and not abortedFlag:
|
if not value and not abortedFlag:
|
||||||
value = _errorFields(expression, expressionFields, expressionFieldsList)
|
value = _errorFields(expression, expressionFields, expressionFieldsList)
|
||||||
|
|
||||||
if value and isListLike(value) and len(value) == 1 and isinstance(value[0], basestring):
|
if value and isListLike(value):
|
||||||
value = unArrayizeValue(value)
|
if len(value) == 1 and isinstance(value[0], basestring):
|
||||||
|
value = unArrayizeValue(value)
|
||||||
|
elif len(value) > 1 and stopLimit == 1:
|
||||||
|
value = [value]
|
||||||
|
|
||||||
duration = calculateDeltaSeconds(start)
|
duration = calculateDeltaSeconds(start)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user