mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Fix for an Issue #1055
This commit is contained in:
parent
76f79ece13
commit
3056fd4765
|
@ -105,7 +105,7 @@ class Enumeration(GenericEnumeration):
|
|||
|
||||
if not isNoneValue(value):
|
||||
value = filter(None, arrayizeValue(value))
|
||||
value = [safeSQLIdentificatorNaming(_, True) for _ in value]
|
||||
value = [safeSQLIdentificatorNaming(unArrayizeValue(_), True) for _ in value]
|
||||
kb.data.cachedTables[db] = value
|
||||
|
||||
if not kb.data.cachedTables and isInferenceAvailable() and not conf.direct:
|
||||
|
|
Loading…
Reference in New Issue
Block a user