mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Redesigning for Issue #75
This commit is contained in:
parent
3d66e2dfb1
commit
3fd5119f3f
2 changed files with 1 additions and 8 deletions
|
|
@ -1743,11 +1743,7 @@ class Enumeration:
|
|||
elif Backend.isDbms(DBMS.FIREBIRD):
|
||||
query = rootQuery.blind.query % (index, column, tbl)
|
||||
|
||||
# Skip enumeration of cells that have a value length of 0
|
||||
if not inject.checkBooleanExpression(agent.forgeQueryOutputLengthZero(query)):
|
||||
logger.debug("column '%s', entry %d is blank" % (column, index+1))
|
||||
else:
|
||||
value = inject.getValue(query, inband=False, error=False, dump=True)
|
||||
value = inject.getValue(query, inband=False, error=False, dump=True)
|
||||
|
||||
lengths[column] = max(lengths[column], len(value) if value else 0)
|
||||
entries[column].append(value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue