mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-02 20:54:13 +03:00
Patch for an Issue #987
This commit is contained in:
parent
e4b00bdbcb
commit
821e4bf507
|
@ -103,7 +103,9 @@ class Users:
|
|||
if not isNoneValue(values):
|
||||
kb.data.cachedUsers = []
|
||||
for value in arrayizeValue(values):
|
||||
kb.data.cachedUsers.append(unArrayizeValue(value))
|
||||
value = unArrayizeValue(value)
|
||||
if not isNoneValue(value):
|
||||
kb.data.cachedUsers.append(value)
|
||||
|
||||
if not kb.data.cachedUsers and isInferenceAvailable() and not conf.direct:
|
||||
infoMsg = "fetching number of database users"
|
||||
|
|
Loading…
Reference in New Issue
Block a user