mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
one more just in case fix for safeSQLIdentificator naming on MSSQL --tables
This commit is contained in:
parent
d06182347f
commit
10dd9096f7
2 changed files with 7 additions and 4 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue