Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1028afc commit b5c8707Copy full SHA for b5c8707
1 file changed
plugins/generic/databases.py
@@ -148,11 +148,11 @@ def getDbs(self):
148
kb.data.cachedDbs = []
149
while True:
150
query = rootQuery.inband.query2 % count
151
- value = inject.getValue(query, blind=blind)
152
- if not value:
+ value = unArrayizeValue(inject.getValue(query, blind=blind))
+ if not (value or "").strip():
153
break
154
else:
155
- kb.data.cachedDbs.append(unArrayizeValue(value))
+ kb.data.cachedDbs.append(value)
156
count += 1
157
if kb.data.cachedDbs:
158
0 commit comments