mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor bug fix so that --search also works when the technique is error-based (which always return a list with lists inside)
This commit is contained in:
parent
6c490bfc8f
commit
b1d6040a48
|
@ -125,6 +125,9 @@ class Enumeration(GenericEnumeration):
|
|||
enumDbs = kb.data.cachedDbs
|
||||
|
||||
for db in enumDbs:
|
||||
if isinstance(db, list):
|
||||
db = db[0]
|
||||
|
||||
foundTbls[db] = []
|
||||
|
||||
for tbl in tblList:
|
||||
|
|
Loading…
Reference in New Issue
Block a user