sqlmap/plugins/dbms/hsqldb/__init__.py

30 lines
908 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2013-06-24 17:34:25 +04: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
2013-06-24 17:34:25 +04:00
"""
from lib.core.enums import DBMS
from lib.core.settings import HSQLDB_SYSTEM_DBS
2013-06-24 17:34:25 +04:00
from lib.core.unescaper import unescaper
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 17:34:25 +04:00
from plugins.generic.misc import Miscellaneous
class HSQLDBMap(Syntax, Fingerprint, Enumeration, Filesystem, Miscellaneous, Takeover):
2013-06-24 17:34:25 +04:00
"""
2013-07-01 15:01:53 +04:00
This class defines HSQLDB methods
2013-06-24 17:34:25 +04:00
"""
def __init__(self):
self.excludeDbsList = HSQLDB_SYSTEM_DBS
2013-06-24 17:34:25 +04:00
2019-03-27 19:37:57 +03:00
for cls in self.__class__.__bases__:
cls.__init__(self)
2013-06-24 17:34:25 +04:00
unescaper[DBMS.HSQLDB] = Syntax.escape