mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
one more just in case fix for safeSQLIdentificator naming on MSSQL --tables
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user