2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2012-02-22 14:40:11 +04:00
|
|
|
|
|
|
|
"""
|
2023-01-03 01:24:59 +03:00
|
|
|
Copyright (c) 2006-2023 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2012-02-22 14:40:11 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
import ibm_db_dbi
|
2017-09-04 18:05:48 +03:00
|
|
|
except:
|
2012-02-22 14:40:11 +04:00
|
|
|
pass
|
|
|
|
|
2012-10-23 17:34:59 +04:00
|
|
|
import logging
|
|
|
|
|
2018-10-04 14:42:13 +03:00
|
|
|
from lib.core.common import getSafeExString
|
2012-10-23 17:34:59 +04:00
|
|
|
from lib.core.data import conf
|
2012-02-22 14:40:11 +04:00
|
|
|
from lib.core.data import logger
|
2012-12-06 17:14:19 +04:00
|
|
|
from lib.core.exception import SqlmapConnectionException
|
2012-02-22 14:40:11 +04:00
|
|
|
from plugins.generic.connector import Connector as GenericConnector
|
|
|
|
|
|
|
|
class Connector(GenericConnector):
|
|
|
|
"""
|
2018-05-08 15:06:34 +03:00
|
|
|
Homepage: https://github.com/ibmdb/python-ibmdb
|
|
|
|
User guide: https://github.com/ibmdb/python-ibmdb/wiki/README
|
|
|
|
API: https://www.python.org/dev/peps/pep-0249/
|
2012-02-22 14:40:11 +04:00
|
|
|
License: Apache License 2.0
|
|
|
|
"""
|
|
|
|
|
|
|
|
def connect(self):
|
|
|
|
self.initConnection()
|
|
|
|
|
|
|
|
try:
|
|
|
|
database = "DRIVER={IBM DB2 ODBC DRIVER};DATABASE=%s;HOSTNAME=%s;PORT=%s;PROTOCOL=TCPIP;" % (self.db, self.hostname, self.port)
|
|
|
|
self.connector = ibm_db_dbi.connect(database, self.user, self.password)
|
2019-01-22 04:08:02 +03:00
|
|
|
except ibm_db_dbi.OperationalError as ex:
|
|
|
|
raise SqlmapConnectionException(getSafeExString(ex))
|
2012-02-22 14:40:11 +04:00
|
|
|
|
2013-01-18 14:21:23 +04:00
|
|
|
self.initCursor()
|
2013-04-15 16:31:27 +04:00
|
|
|
self.printConnected()
|
2012-02-22 14:40:11 +04:00
|
|
|
|
|
|
|
def fetchall(self):
|
|
|
|
try:
|
|
|
|
return self.cursor.fetchall()
|
2019-01-22 04:08:02 +03:00
|
|
|
except ibm_db_dbi.ProgrammingError as ex:
|
|
|
|
logger.log(logging.WARN if conf.dbmsHandler else logging.DEBUG, "(remote) '%s'" % getSafeExString(ex))
|
2012-02-22 14:40:11 +04:00
|
|
|
return None
|
|
|
|
|
|
|
|
def execute(self, query):
|
|
|
|
try:
|
|
|
|
self.cursor.execute(query)
|
2019-01-22 04:08:02 +03:00
|
|
|
except (ibm_db_dbi.OperationalError, ibm_db_dbi.ProgrammingError) as ex:
|
|
|
|
logger.log(logging.WARN if conf.dbmsHandler else logging.DEBUG, "(remote) '%s'" % getSafeExString(ex))
|
|
|
|
except ibm_db_dbi.InternalError as ex:
|
|
|
|
raise SqlmapConnectionException(getSafeExString(ex))
|
2012-02-22 14:40:11 +04:00
|
|
|
|
|
|
|
self.connector.commit()
|
|
|
|
|
|
|
|
def select(self, query):
|
|
|
|
self.execute(query)
|
|
|
|
return self.fetchall()
|