mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Couple of drei updates
This commit is contained in:
@@ -93,9 +93,9 @@ class Entries:
|
||||
self.getTables()
|
||||
|
||||
if len(kb.data.cachedTables) > 0:
|
||||
tblList = list(kb.data.cachedTables.values())
|
||||
tblList = list(six.itervalues(kb.data.cachedTables))
|
||||
|
||||
if isListLike(tblList[0]):
|
||||
if tblList and isListLike(tblList[0]):
|
||||
tblList = tblList[0]
|
||||
elif not conf.search:
|
||||
errMsg = "unable to retrieve the tables "
|
||||
|
||||
Reference in New Issue
Block a user