mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #3693
This commit is contained in:
parent
d3225136e2
commit
4e84b741ef
2 changed files with 2 additions and 2 deletions
|
|
@ -261,7 +261,7 @@ class Enumeration(GenericEnumeration):
|
|||
kb.hintValue = tbl
|
||||
foundTbls[db].append(tbl)
|
||||
|
||||
for db, tbls in foundTbls.items():
|
||||
for db, tbls in list(foundTbls.items()):
|
||||
if len(tbls) == 0:
|
||||
foundTbls.pop(db)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue