2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2010-03-23 01:57:57 +03:00
|
|
|
|
|
|
|
"""
|
2020-12-31 13:46:27 +03:00
|
|
|
Copyright (c) 2006-2021 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 PGSQL_SYSTEM_DBS
|
|
|
|
from lib.core.unescaper import unescaper
|
|
|
|
from plugins.dbms.postgresql.enumeration import Enumeration
|
|
|
|
from plugins.dbms.postgresql.filesystem import Filesystem
|
|
|
|
from plugins.dbms.postgresql.fingerprint import Fingerprint
|
|
|
|
from plugins.dbms.postgresql.syntax import Syntax
|
|
|
|
from plugins.dbms.postgresql.takeover import Takeover
|
|
|
|
from plugins.generic.misc import Miscellaneous
|
|
|
|
|
|
|
|
class PostgreSQLMap(Syntax, Fingerprint, Enumeration, Filesystem, Miscellaneous, Takeover):
|
|
|
|
"""
|
|
|
|
This class defines PostgreSQL methods
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.excludeDbsList = PGSQL_SYSTEM_DBS
|
2011-04-30 17:20:05 +04:00
|
|
|
self.sysUdfs = {
|
2018-03-13 15:45:42 +03:00
|
|
|
# UDF name: UDF parameters' input data-type and return data-type
|
|
|
|
"sys_exec": {"input": ["text"], "return": "int4"},
|
|
|
|
"sys_eval": {"input": ["text"], "return": "text"},
|
|
|
|
"sys_bineval": {"input": ["text"], "return": "int4"},
|
|
|
|
"sys_fileread": {"input": ["text"], "return": "text"}
|
|
|
|
}
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2019-03-27 19:37:57 +03:00
|
|
|
for cls in self.__class__.__bases__:
|
|
|
|
cls.__init__(self)
|
2010-03-23 01:57:57 +03:00
|
|
|
|
2013-01-18 18:40:37 +04:00
|
|
|
unescaper[DBMS.PGSQL] = Syntax.escape
|