sqlmap/plugins/dbms/firebird/enumeration.py
2019-03-27 17:37:57 +01:00

39 lines
1.0 KiB
Python

#!/usr/bin/env python2
"""
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
from lib.core.data import logger
from plugins.generic.enumeration import Enumeration as GenericEnumeration
class Enumeration(GenericEnumeration):
def getDbs(self):
warnMsg = "on Firebird it is not possible to enumerate databases (use only '--tables')"
logger.warn(warnMsg)
return []
def getPasswordHashes(self):
warnMsg = "on Firebird it is not possible to enumerate the user password hashes"
logger.warn(warnMsg)
return {}
def searchDb(self):
warnMsg = "on Firebird it is not possible to search databases"
logger.warn(warnMsg)
return []
def searchColumn(self):
warnMsg = "on Firebird it is not possible to search columns"
logger.warn(warnMsg)
return []
def getHostname(self):
warnMsg = "on Firebird it is not possible to enumerate the hostname"
logger.warn(warnMsg)