2012-12-26 20:12:17 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from lib.core.data import logger
|
|
|
|
from plugins.generic.enumeration import Enumeration as GenericEnumeration
|
|
|
|
|
|
|
|
class Enumeration(GenericEnumeration):
|
|
|
|
def __init__(self):
|
2013-01-04 02:57:07 +04:00
|
|
|
GenericEnumeration.__init__(self)
|
2012-12-26 20:12:17 +04:00
|
|
|
|
|
|
|
def getPasswordHashes(self):
|
|
|
|
warnMsg = "on DB2 it is not possible to list password hashes"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2011-06-25 13:44:24 +04:00
|
|
|
return {}
|