SIGN IN SIGN UP
sqlmapproject / sqlmap UNCLAIMED

Automatic SQL injection and database takeover tool

0 0 4 Python
2019-03-21 14:00:09 +01:00
#!/usr/bin/env python2
"""
2019-01-05 21:38:52 +01:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2017-10-11 14:50:46 +02: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
class Connector:
"""
This class defines generic dbms protocol functionalities for plugins.
"""
def __init__(self):
self.connector = None
self.cursor = None
2018-11-04 14:36:38 +01:00
self.hostname = None
def initConnection(self):
2017-07-03 14:17:11 +02: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 14:31:27 +02:00
def printConnected(self):
infoMsg = "connection to %s server %s" % (conf.dbms, self.hostname)
infoMsg += ":%d established" % self.port
logger.info(infoMsg)
2010-03-30 13:52:47 +00:00
def closed(self):
2018-11-04 14:36:38 +01:00
if self.hostname:
infoMsg = "connection to %s server %s" % (conf.dbms, self.hostname)
infoMsg += ":%d closed" % self.port
logger.info(infoMsg)
self.connector = None
self.cursor = None
2013-01-18 11:21:23 +01:00
def initCursor(self):
self.cursor = self.connector.cursor()
def close(self):
2012-01-20 00:11:19 +00:00
try:
if self.cursor:
self.cursor.close()
if self.connector:
self.connector.close()
2019-01-22 01:20:27 +01:00
except Exception as ex:
logger.debug(ex)
2012-01-20 00:11:19 +00: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 13:20:05 +00:00
errMsg = "'connect' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)
def fetchall(self):
2011-04-30 13:20:05 +00:00
errMsg = "'fetchall' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)
def execute(self, query):
2011-04-30 13:20:05 +00:00
errMsg = "'execute' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)
def select(self, query):
2011-04-30 13:20:05 +00:00
errMsg = "'select' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)