mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
one more just in case fix for safeSQLIdentificator naming on MSSQL --tables
This commit is contained in:
parent
d06182347f
commit
10dd9096f7
|
@ -102,7 +102,9 @@ class Enumeration(GenericEnumeration):
|
|||
break
|
||||
|
||||
if not isNoneValue(value):
|
||||
kb.data.cachedTables[db] = arrayizeValue(value)
|
||||
value = filter(None, arrayizeValue(value))
|
||||
value = [safeSQLIdentificatorNaming(_, True) for _ in value]
|
||||
kb.data.cachedTables[db] = value
|
||||
|
||||
if not kb.data.cachedTables and isInferenceAvailable() and not conf.direct:
|
||||
for db in dbs:
|
||||
|
|
|
@ -927,6 +927,7 @@ class Enumeration:
|
|||
query = rootQuery.blind.query % (unsafeSQLIdentificatorNaming(db), index)
|
||||
|
||||
table = inject.getValue(query, inband=False, error=False)
|
||||
if not isNoneValue(table):
|
||||
kb.hintValue = table
|
||||
table = safeSQLIdentificatorNaming(table, True)
|
||||
tables.append(table)
|
||||
|
|
Loading…
Reference in New Issue
Block a user