2019-03-21 16:00:09 +03:00
|
|
|
#!/usr/bin/env python2
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2010-03-23 01:57:57 +03:00
|
|
|
"""
|
|
|
|
|
2010-12-09 19:49:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.settings import ORACLE_SYSTEM_DBS
|
|
|
|
from lib.core.unescaper import unescaper
|
|
|
|
from plugins.dbms.oracle.enumeration import Enumeration
|
|
|
|
from plugins.dbms.oracle.filesystem import Filesystem
|
|
|
|
from plugins.dbms.oracle.fingerprint import Fingerprint
|
|
|
|
from plugins.dbms.oracle.syntax import Syntax
|
|
|
|
from plugins.dbms.oracle.takeover import Takeover
|
|
|
|
from plugins.generic.misc import Miscellaneous
|
|
|
|
|
|
|
|
class OracleMap(Syntax, Fingerprint, Enumeration, Filesystem, Miscellaneous, Takeover):
|
|
|
|
"""
|
|
|
|
This class defines Oracle methods
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.excludeDbsList = ORACLE_SYSTEM_DBS
|
|
|
|
|
|
|
|
Syntax.__init__(self)
|
|
|
|
Fingerprint.__init__(self)
|
|
|
|
Enumeration.__init__(self)
|
|
|
|
Filesystem.__init__(self)
|
|
|
|
Miscellaneous.__init__(self)
|
|
|
|
Takeover.__init__(self)
|
|
|
|
|
2013-01-18 18:40:37 +04:00
|
|
|
unescaper[DBMS.ORACLE] = Syntax.escape
|