mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-27 01:00:35 +03:00
Minor fix (for a bug reported via ML)
This commit is contained in:
parent
c181e909b5
commit
67115ed558
|
@ -9,6 +9,7 @@ from lib.core.agent import agent
|
|||
from lib.core.common import arrayizeValue
|
||||
from lib.core.common import Backend
|
||||
from lib.core.common import filterPairValues
|
||||
from lib.core.common import flattenValue
|
||||
from lib.core.common import getLimitRange
|
||||
from lib.core.common import isInferenceAvailable
|
||||
from lib.core.common import isListLike
|
||||
|
@ -172,7 +173,7 @@ class Databases:
|
|||
kb.data.cachedDbs.sort()
|
||||
|
||||
if kb.data.cachedDbs:
|
||||
kb.data.cachedDbs = list(set(kb.data.cachedDbs))
|
||||
kb.data.cachedDbs = list(set(flattenValue(kb.data.cachedDbs)))
|
||||
|
||||
return kb.data.cachedDbs
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user