Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f0dad2a

Browse files
committed
minor bug fix (in multiple item search only last item was shown)
1 parent 7b9d978 commit f0dad2a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugins/generic/enumeration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,8 @@ def searchTable(self):
16621662
query += exclDbsQuery
16631663
query = agent.limitQuery(index, query)
16641664
foundDb = inject.getValue(query, inband=False)
1665-
foundTbls[foundDb] = []
1665+
if foundDb not in foundTbls:
1666+
foundTbls[foundDb] = []
16661667

16671668
if tblConsider == "2":
16681669
foundTbls[foundDb].append(tbl)

0 commit comments

Comments
 (0)