2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
"""
|
2022-01-03 13:30:34 +03:00
|
|
|
Copyright (c) 2006-2022 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-30 15:06:30 +04:00
|
|
|
try:
|
|
|
|
import pyodbc
|
2017-09-04 18:05:48 +03:00
|
|
|
except:
|
2010-03-30 15:06:30 +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
|
2010-03-30 15:06:30 +04:00
|
|
|
from lib.core.data import logger
|
2012-12-06 17:14:19 +04:00
|
|
|
from lib.core.exception import SqlmapConnectionException
|
|
|
|
from lib.core.exception import SqlmapUnsupportedFeatureException
|
2010-04-13 12:57:47 +04:00
|
|
|
from lib.core.settings import IS_WIN
|
2010-03-27 02:23:25 +03:00
|
|
|
from plugins.generic.connector import Connector as GenericConnector
|
|
|
|
|
|
|
|
class Connector(GenericConnector):
|
|
|
|
"""
|
2021-05-27 13:29:40 +03:00
|
|
|
Homepage: https://github.com/mkleehammer/pyodbc
|
|
|
|
User guide: https://github.com/mkleehammer/pyodbc/wiki
|
2010-03-30 15:06:30 +04:00
|
|
|
Debian package: python-pyodbc
|
|
|
|
License: MIT
|
2010-03-27 02:23:25 +03:00
|
|
|
"""
|
|
|
|
|
2010-03-31 14:50:47 +04:00
|
|
|
def connect(self):
|
2010-04-13 12:57:47 +04:00
|
|
|
if not IS_WIN:
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "currently, direct connection to Microsoft Access database(s) "
|
2010-04-13 12:57:47 +04:00
|
|
|
errMsg += "is restricted to Windows platforms"
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapUnsupportedFeatureException(errMsg)
|
2010-04-13 12:57:47 +04:00
|
|
|
|
2010-03-30 15:06:30 +04:00
|
|
|
self.initConnection()
|
2010-04-13 12:57:47 +04:00
|
|
|
self.checkFileDb()
|
2010-03-30 15:06:30 +04:00
|
|
|
|
2010-04-13 12:57:47 +04:00
|
|
|
try:
|
|
|
|
self.connector = pyodbc.connect('Driver={Microsoft Access Driver (*.mdb)};Dbq=%s;Uid=Admin;Pwd=;' % self.db)
|
2019-01-22 04:08:02 +03:00
|
|
|
except (pyodbc.Error, pyodbc.OperationalError) as ex:
|
|
|
|
raise SqlmapConnectionException(getSafeExString(ex))
|
2010-03-30 15:06:30 +04:00
|
|
|
|
2013-01-18 14:21:23 +04:00
|
|
|
self.initCursor()
|
2013-04-15 16:31:27 +04:00
|
|
|
self.printConnected()
|
2010-03-30 15:06:30 +04:00
|
|
|
|
|
|
|
def fetchall(self):
|
2010-04-06 19:12:52 +04:00
|
|
|
try:
|
2010-04-13 12:57:47 +04:00
|
|
|
return self.cursor.fetchall()
|
2019-01-22 04:08:02 +03:00
|
|
|
except pyodbc.ProgrammingError as ex:
|
|
|
|
logger.log(logging.WARN if conf.dbmsHandler else logging.DEBUG, "(remote) %s" % getSafeExString(ex))
|
2010-04-06 19:12:52 +04:00
|
|
|
return None
|
2010-03-30 15:06:30 +04:00
|
|
|
|
|
|
|
def execute(self, query):
|
|
|
|
try:
|
|
|
|
self.cursor.execute(query)
|
2019-01-22 04:08:02 +03:00
|
|
|
except (pyodbc.OperationalError, pyodbc.ProgrammingError) as ex:
|
|
|
|
logger.log(logging.WARN if conf.dbmsHandler else logging.DEBUG, "(remote) %s" % getSafeExString(ex))
|
|
|
|
except pyodbc.Error as ex:
|
|
|
|
raise SqlmapConnectionException(getSafeExString(ex))
|
2010-03-30 15:06:30 +04:00
|
|
|
|
|
|
|
self.connector.commit()
|
|
|
|
|
|
|
|
def select(self, query):
|
2010-03-31 14:50:47 +04:00
|
|
|
self.execute(query)
|
|
|
|
return self.fetchall()
|