2019-05-08 12:47:52 +02:00
|
|
|
#!/usr/bin/env python
|
2013-06-24 14:34:25 +01:00
|
|
|
|
|
|
|
|
"""
|
2026-01-01 19:12:07 +01:00
|
|
|
Copyright (c) 2006-2026 sqlmap developers (https://sqlmap.org)
|
2017-10-11 14:50:46 +02:00
|
|
|
See the file 'LICENSE' for copying permission
|
2013-06-24 14:34:25 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from lib.core.enums import DBMS
|
2013-07-01 11:57:47 +02:00
|
|
|
from lib.core.settings import HSQLDB_SYSTEM_DBS
|
2013-06-24 14:34:25 +01:00
|
|
|
from lib.core.unescaper import unescaper
|
2013-07-01 11:57:47 +02:00
|
|
|
from plugins.dbms.hsqldb.enumeration import Enumeration
|
|
|
|
|
from plugins.dbms.hsqldb.filesystem import Filesystem
|
|
|
|
|
from plugins.dbms.hsqldb.fingerprint import Fingerprint
|
|
|
|
|
from plugins.dbms.hsqldb.syntax import Syntax
|
|
|
|
|
from plugins.dbms.hsqldb.takeover import Takeover
|
2013-06-24 14:34:25 +01:00
|
|
|
from plugins.generic.misc import Miscellaneous
|
|
|
|
|
|
2013-07-01 11:57:47 +02:00
|
|
|
class HSQLDBMap(Syntax, Fingerprint, Enumeration, Filesystem, Miscellaneous, Takeover):
|
2013-06-24 14:34:25 +01:00
|
|
|
"""
|
2013-07-01 13:01:53 +02:00
|
|
|
This class defines HSQLDB methods
|
2013-06-24 14:34:25 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
2013-07-01 11:57:47 +02:00
|
|
|
self.excludeDbsList = HSQLDB_SYSTEM_DBS
|
2013-06-24 14:34:25 +01:00
|
|
|
|
2019-03-27 17:37:57 +01:00
|
|
|
for cls in self.__class__.__bases__:
|
|
|
|
|
cls.__init__(self)
|
2013-06-24 14:34:25 +01:00
|
|
|
|
2013-07-01 11:57:47 +02:00
|
|
|
unescaper[DBMS.HSQLDB] = Syntax.escape
|