2010-03-24 00:26:45 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2011-04-15 16:33:18 +04:00
|
|
|
Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-24 00:26:45 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.data import logger
|
|
|
|
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-05-07 17:40:57 +04:00
|
|
|
|
2010-03-30 19:04:55 +04:00
|
|
|
def getDbs(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to enumerate databases"
|
|
|
|
logger.warn(warnMsg)
|
2010-03-24 00:26:45 +03:00
|
|
|
|
2010-03-30 19:04:55 +04:00
|
|
|
return []
|
2010-11-02 13:13:36 +03:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
def getBanner(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to get a banner"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
2010-11-05 00:47:21 +03:00
|
|
|
def getCurrentDb(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to get name of the current database"
|
|
|
|
logger.warn(warnMsg)
|
2010-11-11 20:09:31 +03:00
|
|
|
|
2010-03-24 00:26:45 +03:00
|
|
|
def getPasswordHashes(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to enumerate the user password hashes"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return {}
|
2010-05-07 17:40:57 +04:00
|
|
|
|
|
|
|
def searchDb(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to search databases"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return []
|
2010-12-25 12:13:57 +03:00
|
|
|
|
2011-01-24 20:41:36 +03:00
|
|
|
def searchTable(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to search tables"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
def searchColumn(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to search columns"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
2010-12-25 12:13:57 +03:00
|
|
|
def getCurrentUser(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to enumerate the current user"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
def getUsers(self):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to enumerate the users"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
def getPrivileges(self, *args):
|
|
|
|
warnMsg = "on Microsoft Access it is not possible to enumerate the user privileges"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return {}
|