Minor fix

This commit is contained in:
Miroslav Stampar
2012-10-28 00:19:00 +02:00
parent 0aeb9dbe8b
commit a435ba6863
4 changed files with 4 additions and 3 deletions

View File

@@ -367,6 +367,7 @@ def getValue(expression, blind=True, inband=True, error=True, time=True, fromUse
through inband SQL injection (if selected) and/or blind SQL injection
(if selected).
"""
kb.safeCharEncode = safeCharEncode
kb.resumeValues = resumeValue

View File

@@ -110,7 +110,7 @@ def pivotDumpTable(table, colList, count=None, blind=True):
else:
query = dumpNode.query2 % (column, table, colList[0], pivotValue)
value = unArrayizeValue(inject.getValue(query, blind=blind, inband=not blind, error=not blind))
value = unArrayizeValue(inject.getValue(query, blind=blind, time=blind, inband=not blind, error=not blind))
if column == colList[0]:
if isNoneValue(value):