mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Couple of drei updates
This commit is contained in:
parent
c3f15ef309
commit
cc9711ef5b
6 changed files with 12 additions and 12 deletions
|
|
@ -478,9 +478,9 @@ class Databases:
|
|||
if conf.db in kb.data.cachedTables:
|
||||
tblList = kb.data.cachedTables[conf.db]
|
||||
else:
|
||||
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]
|
||||
|
||||
tblList = list(tblList)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue