2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2012-12-26 20:12:17 +04:00
|
|
|
|
|
|
|
"""
|
2022-01-03 13:30:34 +03:00
|
|
|
Copyright (c) 2006-2022 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2012-12-26 20:12:17 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.data import logger
|
|
|
|
from plugins.generic.enumeration import Enumeration as GenericEnumeration
|
|
|
|
|
|
|
|
class Enumeration(GenericEnumeration):
|
|
|
|
def getPasswordHashes(self):
|
2020-01-20 17:33:45 +03:00
|
|
|
warnMsg = "on IBM DB2 it is not possible to enumerate password hashes"
|
2012-12-26 20:12:17 +04:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2013-01-10 16:18:44 +04:00
|
|
|
return {}
|
2019-05-29 16:52:33 +03:00
|
|
|
|
|
|
|
def getStatements(self):
|
2020-01-20 17:33:45 +03:00
|
|
|
warnMsg = "on IBM DB2 it is not possible to enumerate the SQL statements"
|
2019-05-29 16:52:33 +03:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
return []
|