2010-03-27 02:23:25 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
$Id$
|
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
|
|
|
See the file doc/COPYING for copying permission.
|
2010-03-27 02:23:25 +03:00
|
|
|
"""
|
|
|
|
|
2010-03-30 03:48:21 +04:00
|
|
|
try:
|
|
|
|
import kinterbasdb
|
|
|
|
except ImportError, _:
|
|
|
|
pass
|
|
|
|
|
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.exception import sqlmapConnectionException
|
|
|
|
|
2010-03-27 02:23:25 +03:00
|
|
|
from plugins.generic.connector import Connector as GenericConnector
|
|
|
|
|
|
|
|
class Connector(GenericConnector):
|
|
|
|
"""
|
2010-03-30 03:48:21 +04:00
|
|
|
Homepage: http://kinterbasdb.sourceforge.net/
|
|
|
|
User guide: http://kinterbasdb.sourceforge.net/dist_docs/usage.html
|
2010-03-31 14:50:47 +04:00
|
|
|
Debian package: python-kinterbasdb
|
2010-03-30 03:48:21 +04:00
|
|
|
License: BSD
|
2010-03-27 02:23:25 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
GenericConnector.__init__(self)
|
2010-03-30 03:48:21 +04:00
|
|
|
|
2010-06-10 16:02:48 +04:00
|
|
|
# sample usage:
|
|
|
|
# ./sqlmap.py -d "firebird://sysdba:testpass@/opt/firebird/testdb.fdb"
|
|
|
|
# ./sqlmap.py -d "firebird://sysdba:testpass@127.0.0.1:3050//opt/firebird/testdb.fdb"
|
2010-03-31 14:50:47 +04:00
|
|
|
def connect(self):
|
2010-03-30 03:48:21 +04:00
|
|
|
self.initConnection()
|
|
|
|
|
2010-03-31 14:50:47 +04:00
|
|
|
if not self.hostname:
|
|
|
|
self.checkFileDb()
|
|
|
|
|
2010-03-30 03:48:21 +04:00
|
|
|
try:
|
2010-06-10 16:14:24 +04:00
|
|
|
self.connector = kinterbasdb.connect(host=self.hostname.encode(conf.dataEncoding), database=self.db.encode(conf.dataEncoding), \
|
|
|
|
user=self.user.encode(conf.dataEncoding), password=self.password.encode(conf.dataEncoding), charset="UTF8") #http://www.daniweb.com/forums/thread248499.html
|
2010-03-30 03:48:21 +04:00
|
|
|
except kinterbasdb.OperationalError, msg:
|
|
|
|
raise sqlmapConnectionException, msg[1]
|
|
|
|
self.setCursor()
|
|
|
|
self.connected()
|
|
|
|
|
|
|
|
def fetchall(self):
|
2010-04-06 19:12:52 +04:00
|
|
|
try:
|
|
|
|
return self.cursor.fetchall()
|
|
|
|
except kinterbasdb.OperationalError, msg:
|
|
|
|
logger.log(8, msg[1])
|
|
|
|
return None
|
2010-03-30 03:48:21 +04:00
|
|
|
|
|
|
|
def execute(self, query):
|
|
|
|
try:
|
|
|
|
self.cursor.execute(query)
|
|
|
|
except kinterbasdb.OperationalError, msg:
|
|
|
|
logger.log(8, msg[1])
|
|
|
|
except kinterbasdb.Error, msg:
|
|
|
|
raise sqlmapConnectionException, msg[1]
|
|
|
|
|
|
|
|
self.connector.commit()
|
|
|
|
|
|
|
|
def select(self, query):
|
2010-03-31 14:50:47 +04:00
|
|
|
self.execute(query)
|
|
|
|
return self.fetchall()
|