2010-03-27 02:23:25 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2011-07-08 00:10:03 +04:00
|
|
|
Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-27 02:23:25 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
2011-06-22 17:31:07 +04:00
|
|
|
import pymysql
|
2010-03-27 02:23:25 +03:00
|
|
|
except ImportError, _:
|
|
|
|
pass
|
|
|
|
|
|
|
|
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):
|
|
|
|
"""
|
2011-06-22 17:31:07 +04:00
|
|
|
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
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
Possible connectors: http://wiki.python.org/moin/MySQL
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
GenericConnector.__init__(self)
|
|
|
|
|
2010-03-31 14:50:47 +04:00
|
|
|
def connect(self):
|
2010-03-27 02:23:25 +03:00
|
|
|
self.initConnection()
|
|
|
|
|
|
|
|
try:
|
2011-06-22 17:31:07 +04:00
|
|
|
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)
|
|
|
|
except pymysql.OperationalError, msg:
|
2010-03-27 02:23:25 +03:00
|
|
|
raise sqlmapConnectionException, msg[1]
|
|
|
|
|
|
|
|
self.setCursor()
|
|
|
|
self.connected()
|
|
|
|
|
|
|
|
def fetchall(self):
|
2010-04-06 19:12:52 +04:00
|
|
|
try:
|
|
|
|
return self.cursor.fetchall()
|
2011-06-22 17:31:07 +04:00
|
|
|
except pymysql.ProgrammingError, msg:
|
2010-11-08 01:14:06 +03:00
|
|
|
logger.warn(msg[1])
|
2010-04-06 19:12:52 +04:00
|
|
|
return None
|
2010-03-27 02:23:25 +03:00
|
|
|
|
|
|
|
def execute(self, query):
|
|
|
|
try:
|
|
|
|
self.cursor.execute(query)
|
2011-06-22 17:31:07 +04:00
|
|
|
except (pymysql.OperationalError, pymysql.ProgrammingError), msg:
|
2010-11-08 01:14:06 +03:00
|
|
|
logger.warn(msg[1])
|
2011-06-22 17:31:07 +04:00
|
|
|
except pymysql.InternalError, msg:
|
2010-03-27 02:23:25 +03:00
|
|
|
raise sqlmapConnectionException, msg[1]
|
|
|
|
|
|
|
|
self.connector.commit()
|
|
|
|
|
|
|
|
def select(self, query):
|
|
|
|
self.execute(query)
|
|
|
|
return self.fetchall()
|