Skip to content

Commit b42a15d

Browse files
committed
Minor patch related to the Issue sqlmapproject#1025
1 parent 5166675 commit b42a15d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

plugins/dbms/sybase/enumeration.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from lib.core.common import isTechniqueAvailable
1111
from lib.core.common import randomStr
1212
from lib.core.common import safeSQLIdentificatorNaming
13+
from lib.core.common import unArrayizeValue
1314
from lib.core.common import unsafeSQLIdentificatorNaming
1415
from lib.core.data import conf
1516
from lib.core.data import kb
@@ -67,6 +68,8 @@ def getPrivileges(self, *args):
6768
users = kb.data.cachedUsers
6869

6970
for user in users:
71+
user = unArrayizeValue(user)
72+
7073
if user is None:
7174
continue
7275

0 commit comments

Comments
 (0)