mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-31 15:40:46 +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:
parent
7304971544
commit
b250b68231
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class Users:
|
||||||
query = rootQuery.inband.query2
|
query = rootQuery.inband.query2
|
||||||
else:
|
else:
|
||||||
query = rootQuery.inband.query
|
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):
|
if not isNoneValue(value):
|
||||||
kb.data.cachedUsers = arrayizeValue(value)
|
kb.data.cachedUsers = arrayizeValue(value)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue