2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2012-12-26 20:12:17 +04:00
|
|
|
|
|
|
|
"""
|
2013-01-18 18:07:51 +04:00
|
|
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
2012-12-26 20:12:17 +04:00
|
|
|
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)
|
|
|
|
|
2013-01-10 16:18:44 +04:00
|
|
|
return {}
|
|
|
|
|