sqlmap/plugins/generic/connector.py

83 lines
2.4 KiB
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
"""
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
"""
import os
from lib.core.data import conf
from lib.core.data import logger
from lib.core.exception import SqlmapFilePathException
from lib.core.exception import SqlmapUndefinedMethod
2019-05-29 17:42:04 +03:00
class Connector(object):
"""
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
def initConnection(self):
2017-07-03 15:17:11 +03:00
self.user = conf.dbmsUser or ""
self.password = conf.dbmsPass or ""
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-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)
self.connector = None
self.cursor = None
2013-01-18 14:21:23 +04:00
def initCursor(self):
self.cursor = self.connector.cursor()
def close(self):
2012-01-20 04:11:19 +04:00
try:
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()
def checkFileDb(self):
if not os.path.exists(self.db):
errMsg = "the provided database file '%s' does not exist" % self.db
raise SqlmapFilePathException(errMsg)
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"
raise SqlmapUndefinedMethod(errMsg)
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"
raise SqlmapUndefinedMethod(errMsg)
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"
raise SqlmapUndefinedMethod(errMsg)
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"
raise SqlmapUndefinedMethod(errMsg)