We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5166675 commit b42a15dCopy full SHA for b42a15d
1 file changed
plugins/dbms/sybase/enumeration.py
@@ -10,6 +10,7 @@
10
from lib.core.common import isTechniqueAvailable
11
from lib.core.common import randomStr
12
from lib.core.common import safeSQLIdentificatorNaming
13
+from lib.core.common import unArrayizeValue
14
from lib.core.common import unsafeSQLIdentificatorNaming
15
from lib.core.data import conf
16
from lib.core.data import kb
@@ -67,6 +68,8 @@ def getPrivileges(self, *args):
67
68
users = kb.data.cachedUsers
69
70
for user in users:
71
+ user = unArrayizeValue(user)
72
+
73
if user is None:
74
continue
75
0 commit comments