sqlmap/plugins/dbms/postgresql/connector.py

76 lines
2.0 KiB
Python
Raw Normal View History

#!/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
"""
try:
import psycopg2
import psycopg2.extensions
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY)
except ImportError, _:
pass
from lib.core.data import logger
from lib.core.exception import sqlmapConnectionException
from plugins.generic.connector import Connector as GenericConnector
class Connector(GenericConnector):
"""
Homepage: http://initd.org/psycopg/
User guide: http://initd.org/psycopg/docs/
API: http://initd.org/psycopg/docs/genindex.html
Debian package: python-psycopg2
License: GPL
Possible connectors: http://wiki.python.org/moin/PostgreSQL
"""
def __init__(self):
GenericConnector.__init__(self)
def connect(self):
self.initConnection()
try:
self.connector = psycopg2.connect(host=self.hostname, user=self.user, password=self.password, database=self.db, port=self.port)
except psycopg2.OperationalError, msg:
raise sqlmapConnectionException, msg
self.connector.set_client_encoding('UNICODE')
self.setCursor()
self.connected()
def fetchall(self):
2010-04-06 19:12:52 +04:00
try:
return self.cursor.fetchall()
except psycopg2.ProgrammingError, msg:
logger.warn(msg)
2010-04-06 19:12:52 +04:00
return None
def execute(self, query):
2012-01-13 18:10:53 +04:00
retVal = False
try:
self.cursor.execute(query)
2012-01-13 18:10:53 +04:00
retVal = True
except (psycopg2.OperationalError, psycopg2.ProgrammingError), msg:
2012-02-09 14:16:58 +04:00
logger.warn(("(remote) %s" % msg).strip())
except psycopg2.InternalError, msg:
raise sqlmapConnectionException, msg
self.connector.commit()
2012-01-13 18:10:53 +04:00
return retVal
def select(self, query):
2012-01-13 18:10:53 +04:00
retVal = None
if self.execute(query):
retVal = self.fetchall()
return retVal