mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Bug fix (--users was returning only 1 value because of this bug; probably introduced by mistake months ago)
This commit is contained in:
parent
7304971544
commit
b250b68231
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user