mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Patch for an Issue #961
This commit is contained in:
parent
5c182a0ec4
commit
40eb1973d7
|
@ -14,6 +14,7 @@ from lib.core.common import isNoneValue
|
|||
from lib.core.common import isNumPosStrValue
|
||||
from lib.core.common import isTechniqueAvailable
|
||||
from lib.core.common import safeSQLIdentificatorNaming
|
||||
from lib.core.common import unArrayizeValue
|
||||
from lib.core.common import unsafeSQLIdentificatorNaming
|
||||
from lib.core.data import conf
|
||||
from lib.core.data import kb
|
||||
|
@ -49,6 +50,8 @@ class Enumeration(GenericEnumeration):
|
|||
users = kb.data.cachedUsers
|
||||
|
||||
for user in users:
|
||||
user = unArrayizeValue(user)
|
||||
|
||||
if user is None:
|
||||
continue
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user