2010-03-23 01:57:57 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-23 01:57:57 +03:00
|
|
|
"""
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2012-02-16 18:42:28 +04:00
|
|
|
from lib.core.common import getLimitRange
|
2012-10-25 00:59:46 +04:00
|
|
|
from lib.core.common import isAdminFromPrivileges
|
2012-01-07 23:30:35 +04:00
|
|
|
from lib.core.common import isInferenceAvailable
|
2011-05-26 12:17:21 +04:00
|
|
|
from lib.core.common import isNoneValue
|
2010-12-18 00:45:20 +03:00
|
|
|
from lib.core.common import isNumPosStrValue
|
2011-01-12 04:13:32 +03:00
|
|
|
from lib.core.common import isTechniqueAvailable
|
2010-03-25 18:46:06 +03:00
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.data import logger
|
2010-03-25 18:46:06 +03:00
|
|
|
from lib.core.data import queries
|
2012-02-29 18:36:23 +04:00
|
|
|
from lib.core.enums import CHARSET_TYPE
|
2010-12-10 16:04:36 +03:00
|
|
|
from lib.core.enums import EXPECTED
|
2011-01-15 13:14:05 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2010-03-25 18:46:06 +03:00
|
|
|
from lib.core.exception import sqlmapNoneDataException
|
|
|
|
from lib.request import inject
|
2010-03-23 01:57:57 +03:00
|
|
|
from plugins.generic.enumeration import Enumeration as GenericEnumeration
|
|
|
|
|
|
|
|
class Enumeration(GenericEnumeration):
|
|
|
|
def __init__(self):
|
2011-01-14 14:55:20 +03:00
|
|
|
GenericEnumeration.__init__(self)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2010-03-25 18:46:06 +03:00
|
|
|
def getRoles(self, query2=False):
|
|
|
|
infoMsg = "fetching database users roles"
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
rootQuery = queries[Backend.getIdentifiedDbms()].roles
|
2010-03-25 18:46:06 +03:00
|
|
|
|
|
|
|
if conf.user == "CU":
|
|
|
|
infoMsg += " for current user"
|
|
|
|
conf.user = self.getCurrentUser()
|
|
|
|
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
# Set containing the list of DBMS administrators
|
|
|
|
areAdmins = set()
|
|
|
|
|
2012-01-07 23:30:35 +04:00
|
|
|
if any(isTechniqueAvailable(_) for _ in (PAYLOAD.TECHNIQUE.UNION, PAYLOAD.TECHNIQUE.ERROR)) or conf.direct:
|
2010-03-25 18:46:06 +03:00
|
|
|
if query2:
|
2011-04-30 17:20:05 +04:00
|
|
|
query = rootQuery.inband.query2
|
2010-10-21 17:13:12 +04:00
|
|
|
condition = rootQuery.inband.condition2
|
2010-03-25 18:46:06 +03:00
|
|
|
else:
|
2011-04-30 17:20:05 +04:00
|
|
|
query = rootQuery.inband.query
|
2010-10-21 17:13:12 +04:00
|
|
|
condition = rootQuery.inband.condition
|
2010-03-25 18:46:06 +03:00
|
|
|
|
|
|
|
if conf.user:
|
|
|
|
users = conf.user.split(",")
|
|
|
|
query += " WHERE "
|
2011-06-18 16:23:18 +04:00
|
|
|
query += " OR ".join("%s = '%s'" % (condition, user) for user in sorted(users))
|
2010-03-25 18:46:06 +03:00
|
|
|
|
2011-01-19 02:02:11 +03:00
|
|
|
values = inject.getValue(query, blind=False)
|
2010-03-25 18:46:06 +03:00
|
|
|
|
|
|
|
if not values and not query2:
|
|
|
|
infoMsg = "trying with table USER_ROLE_PRIVS"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
return self.getRoles(query2=True)
|
|
|
|
|
2011-05-26 12:17:21 +04:00
|
|
|
if not isNoneValue(values):
|
2010-03-25 18:46:06 +03:00
|
|
|
for value in values:
|
2011-04-30 17:20:05 +04:00
|
|
|
user = None
|
2010-03-25 18:46:06 +03:00
|
|
|
roles = set()
|
|
|
|
|
|
|
|
for count in xrange(0, len(value)):
|
|
|
|
# The first column is always the username
|
|
|
|
if count == 0:
|
|
|
|
user = value[count]
|
|
|
|
|
|
|
|
# The other columns are the roles
|
|
|
|
else:
|
|
|
|
role = value[count]
|
|
|
|
|
|
|
|
# In Oracle we get the list of roles as string
|
|
|
|
roles.add(role)
|
|
|
|
|
2012-10-25 00:59:46 +04:00
|
|
|
if isAdminFromPrivileges(roles):
|
2010-03-25 18:46:06 +03:00
|
|
|
areAdmins.add(user)
|
|
|
|
|
|
|
|
if kb.data.cachedUsersRoles.has_key(user):
|
|
|
|
kb.data.cachedUsersRoles[user].extend(roles)
|
|
|
|
else:
|
|
|
|
kb.data.cachedUsersRoles[user] = list(roles)
|
|
|
|
|
2012-01-07 23:30:35 +04:00
|
|
|
if not kb.data.cachedUsersRoles and isInferenceAvailable() and not conf.direct:
|
2010-03-25 18:46:06 +03:00
|
|
|
conditionChar = "="
|
|
|
|
|
|
|
|
if conf.user:
|
|
|
|
users = conf.user.split(",")
|
|
|
|
else:
|
|
|
|
if not len(kb.data.cachedUsers):
|
|
|
|
users = self.getUsers()
|
|
|
|
else:
|
|
|
|
users = kb.data.cachedUsers
|
|
|
|
|
|
|
|
retrievedUsers = set()
|
|
|
|
|
|
|
|
for user in users:
|
|
|
|
unescapedUser = None
|
|
|
|
|
|
|
|
if user in retrievedUsers:
|
|
|
|
continue
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
infoMsg = "fetching number of roles "
|
2010-03-25 18:46:06 +03:00
|
|
|
infoMsg += "for user '%s'" % user
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
if unescapedUser:
|
|
|
|
queryUser = unescapedUser
|
|
|
|
else:
|
|
|
|
queryUser = user
|
|
|
|
|
|
|
|
if query2:
|
2010-10-21 17:13:12 +04:00
|
|
|
query = rootQuery.blind.count2 % queryUser
|
2010-03-25 18:46:06 +03:00
|
|
|
else:
|
2010-10-21 17:13:12 +04:00
|
|
|
query = rootQuery.blind.count % queryUser
|
2012-02-29 18:36:23 +04:00
|
|
|
count = inject.getValue(query, inband=False, error=False, expected=EXPECTED.INT, charsetType=CHARSET_TYPE.DIGITS)
|
2010-03-25 18:46:06 +03:00
|
|
|
|
2010-12-18 00:45:20 +03:00
|
|
|
if not isNumPosStrValue(count):
|
2012-04-04 13:25:05 +04:00
|
|
|
if count != 0 and not query2:
|
2010-03-25 18:46:06 +03:00
|
|
|
infoMsg = "trying with table USER_SYS_PRIVS"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
return self.getPrivileges(query2=True)
|
|
|
|
|
2011-04-30 17:20:05 +04:00
|
|
|
warnMsg = "unable to retrieve the number of "
|
2010-03-25 18:46:06 +03:00
|
|
|
warnMsg += "roles for user '%s'" % user
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
continue
|
|
|
|
|
|
|
|
infoMsg = "fetching roles for user '%s'" % user
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
roles = set()
|
|
|
|
|
2012-02-16 18:42:28 +04:00
|
|
|
indexRange = getLimitRange(count, plusOne=True)
|
2010-03-25 18:46:06 +03:00
|
|
|
|
|
|
|
for index in indexRange:
|
|
|
|
if query2:
|
2010-10-21 17:13:12 +04:00
|
|
|
query = rootQuery.blind.query2 % (queryUser, index)
|
2010-03-25 18:46:06 +03:00
|
|
|
else:
|
2010-10-21 17:13:12 +04:00
|
|
|
query = rootQuery.blind.query % (queryUser, index)
|
2011-01-19 02:02:11 +03:00
|
|
|
role = inject.getValue(query, inband=False, error=False)
|
2010-03-25 18:46:06 +03:00
|
|
|
|
|
|
|
# In Oracle we get the list of roles as string
|
|
|
|
roles.add(role)
|
|
|
|
|
|
|
|
if roles:
|
|
|
|
kb.data.cachedUsersRoles[user] = list(roles)
|
|
|
|
else:
|
2011-04-30 17:20:05 +04:00
|
|
|
warnMsg = "unable to retrieve the roles "
|
2010-03-25 18:46:06 +03:00
|
|
|
warnMsg += "for user '%s'" % user
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
retrievedUsers.add(user)
|
|
|
|
|
|
|
|
if not kb.data.cachedUsersRoles:
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "unable to retrieve the roles "
|
2010-03-25 18:46:06 +03:00
|
|
|
errMsg += "for the database users"
|
|
|
|
raise sqlmapNoneDataException, errMsg
|
|
|
|
|
|
|
|
return ( kb.data.cachedUsersRoles, areAdmins )
|