2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
"""
|
2024-01-04 01:11:52 +03:00
|
|
|
Copyright (c) 2006-2024 sqlmap developers (https://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2010-03-27 02:23:25 +03:00
|
|
|
"""
|
|
|
|
|
2010-03-31 14:50:47 +04:00
|
|
|
import os
|
|
|
|
|
2010-03-27 02:23:25 +03:00
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import logger
|
2012-12-06 17:14:19 +04:00
|
|
|
from lib.core.exception import SqlmapFilePathException
|
|
|
|
from lib.core.exception import SqlmapUndefinedMethod
|
2010-03-27 02:23:25 +03:00
|
|
|
|
2019-05-29 17:42:04 +03:00
|
|
|
class Connector(object):
|
2010-03-27 02:23:25 +03:00
|
|
|
"""
|
|
|
|
This class defines generic dbms protocol functionalities for plugins.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.connector = None
|
|
|
|
self.cursor = None
|
2018-11-04 16:36:38 +03:00
|
|
|
self.hostname = None
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
def initConnection(self):
|
2017-07-03 15:17:11 +03:00
|
|
|
self.user = conf.dbmsUser or ""
|
|
|
|
self.password = conf.dbmsPass or ""
|
2010-03-27 02:23:25 +03:00
|
|
|
self.hostname = conf.hostname
|
|
|
|
self.port = conf.port
|
|
|
|
self.db = conf.dbmsDb
|
|
|
|
|
2013-04-15 16:31:27 +04:00
|
|
|
def printConnected(self):
|
2019-05-07 16:59:26 +03:00
|
|
|
if self.hostname and self.port:
|
2019-05-07 17:37:32 +03:00
|
|
|
infoMsg = "connection to %s server '%s:%d' established" % (conf.dbms, self.hostname, self.port)
|
2019-05-07 16:59:26 +03:00
|
|
|
logger.info(infoMsg)
|
2010-11-03 13:08:27 +03:00
|
|
|
|
2010-03-30 17:52:47 +04:00
|
|
|
def closed(self):
|
2019-05-07 16:59:26 +03:00
|
|
|
if self.hostname and self.port:
|
2019-05-07 17:37:32 +03:00
|
|
|
infoMsg = "connection to %s server '%s:%d' closed" % (conf.dbms, self.hostname, self.port)
|
2018-11-04 16:36:38 +03:00
|
|
|
logger.info(infoMsg)
|
2010-03-27 02:23:25 +03:00
|
|
|
|
2010-03-31 14:50:47 +04:00
|
|
|
self.connector = None
|
|
|
|
self.cursor = None
|
|
|
|
|
2013-01-18 14:21:23 +04:00
|
|
|
def initCursor(self):
|
2010-03-31 14:50:47 +04:00
|
|
|
self.cursor = self.connector.cursor()
|
|
|
|
|
|
|
|
def close(self):
|
2012-01-20 04:11:19 +04:00
|
|
|
try:
|
2013-04-15 12:33:25 +04:00
|
|
|
if self.cursor:
|
|
|
|
self.cursor.close()
|
|
|
|
if self.connector:
|
|
|
|
self.connector.close()
|
2019-01-22 03:20:27 +03:00
|
|
|
except Exception as ex:
|
|
|
|
logger.debug(ex)
|
2012-01-20 04:11:19 +04:00
|
|
|
finally:
|
|
|
|
self.closed()
|
2010-03-31 14:50:47 +04:00
|
|
|
|
|
|
|
def checkFileDb(self):
|
|
|
|
if not os.path.exists(self.db):
|
|
|
|
errMsg = "the provided database file '%s' does not exist" % self.db
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapFilePathException(errMsg)
|
2010-03-31 14:50:47 +04:00
|
|
|
|
2010-03-27 02:23:25 +03:00
|
|
|
def connect(self):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "'connect' method must be defined "
|
2021-03-11 13:11:29 +03:00
|
|
|
errMsg += "inside the specific DBMS plugin"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUndefinedMethod(errMsg)
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
def fetchall(self):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "'fetchall' method must be defined "
|
2021-03-11 13:11:29 +03:00
|
|
|
errMsg += "inside the specific DBMS plugin"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUndefinedMethod(errMsg)
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
def execute(self, query):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "'execute' method must be defined "
|
2021-03-11 13:11:29 +03:00
|
|
|
errMsg += "inside the specific DBMS plugin"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUndefinedMethod(errMsg)
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
def select(self, query):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "'select' method must be defined "
|
2021-03-11 13:11:29 +03:00
|
|
|
errMsg += "inside the specific DBMS plugin"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUndefinedMethod(errMsg)
|