sqlmap/plugins/dbms/mysql/connector.py

77 lines
2.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
"""
2017-01-02 16:19:18 +03:00
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
"""
try:
import pymysql
2017-09-04 18:05:48 +03:00
except:
pass
2012-10-23 17:34:59 +04:00
import logging
2016-10-26 09:49:27 +03:00
import struct
2012-10-23 17:34:59 +04:00
from lib.core.data import conf
from lib.core.data import logger
from lib.core.exception import SqlmapConnectionException
from plugins.generic.connector import Connector as GenericConnector
class Connector(GenericConnector):
"""
Homepage: http://code.google.com/p/pymysql/
User guide: http://code.google.com/p/pymysql/
API: http://code.google.com/p/pymysql/
Debian package: <none>
License: MIT
Possible connectors: http://wiki.python.org/moin/MySQL
"""
def __init__(self):
GenericConnector.__init__(self)
def connect(self):
self.initConnection()
try:
self.connector = pymysql.connect(host=self.hostname, user=self.user, passwd=self.password, db=self.db, port=self.port, connect_timeout=conf.timeout, use_unicode=True)
2017-05-15 18:03:05 +03:00
except (pymysql.OperationalError, pymysql.InternalError), msg:
raise SqlmapConnectionException(msg[1])
2017-05-15 18:03:05 +03:00
except struct.error, msg:
raise SqlmapConnectionException(msg)
2013-01-18 14:21:23 +04:00
self.initCursor()
2013-04-15 16:31:27 +04:00
self.printConnected()
def fetchall(self):
2010-04-06 19:12:52 +04:00
try:
return self.cursor.fetchall()
except pymysql.ProgrammingError, msg:
2012-10-23 17:34:59 +04:00
logger.log(logging.WARN if conf.dbmsHandler else logging.DEBUG, "(remote) %s" % msg[1])
2010-04-06 19:12:52 +04:00
return None
def execute(self, query):
2012-01-13 18:10:53 +04:00
retVal = False
try:
self.cursor.execute(query)
2012-01-13 18:10:53 +04:00
retVal = True
except (pymysql.OperationalError, pymysql.ProgrammingError), msg:
2012-10-23 17:34:59 +04:00
logger.log(logging.WARN if conf.dbmsHandler else logging.DEBUG, "(remote) %s" % msg[1])
except pymysql.InternalError, msg:
raise SqlmapConnectionException(msg[1])
self.connector.commit()
2012-01-13 18:10:53 +04:00
return retVal
def select(self, query):
2012-01-13 18:10:53 +04:00
retVal = None
if self.execute(query):
retVal = self.fetchall()
return retVal