2010-03-23 01:57:57 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' 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 = {
|
|
|
|
# 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
|
|
|
|
|
|
|
Syntax.__init__(self)
|
|
|
|
Fingerprint.__init__(self)
|
|
|
|
Enumeration.__init__(self)
|
|
|
|
Filesystem.__init__(self)
|
|
|
|
Miscellaneous.__init__(self)
|
|
|
|
Takeover.__init__(self)
|
|
|
|
|
2010-12-09 20:10:22 +03:00
|
|
|
unescaper[DBMS.PGSQL] = Syntax.unescape
|