mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
Bug fix (--users was returning only 1 value because of this bug; probably introduced by mistake months ago)
This commit is contained in:
@@ -97,7 +97,7 @@ class Users:
|
||||
query = rootQuery.inband.query2
|
||||
else:
|
||||
query = rootQuery.inband.query
|
||||
value = unArrayizeValue(inject.getValue(query, blind=False, time=False))
|
||||
value = inject.getValue(query, blind=False, time=False)
|
||||
|
||||
if not isNoneValue(value):
|
||||
kb.data.cachedUsers = arrayizeValue(value)
|
||||
|
||||
Reference in New Issue
Block a user