mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
145 lines
5.0 KiB
Python
145 lines
5.0 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
import hashlib
|
|
import os
|
|
import sqlite3
|
|
import threading
|
|
import time
|
|
|
|
from lib.core.common import getUnicode
|
|
from lib.core.common import serializeObject
|
|
from lib.core.common import unserializeObject
|
|
from lib.core.data import logger
|
|
from lib.core.exception import SqlmapDataException
|
|
from lib.core.settings import HASHDB_FLUSH_RETRIES
|
|
from lib.core.settings import HASHDB_FLUSH_THRESHOLD
|
|
from lib.core.settings import UNICODE_ENCODING
|
|
from lib.core.threads import getCurrentThreadData
|
|
from lib.core.threads import getCurrentThreadName
|
|
|
|
class HashDB(object):
|
|
def __init__(self, filepath):
|
|
self.filepath = filepath
|
|
self._write_cache = {}
|
|
self._cache_lock = threading.Lock()
|
|
|
|
def _get_cursor(self):
|
|
threadData = getCurrentThreadData()
|
|
|
|
if threadData.hashDBCursor is None:
|
|
try:
|
|
connection = sqlite3.connect(self.filepath, timeout=3, isolation_level=None)
|
|
threadData.hashDBCursor = connection.cursor()
|
|
threadData.hashDBCursor.execute("CREATE TABLE IF NOT EXISTS storage (id INTEGER PRIMARY KEY, value TEXT)")
|
|
except Exception, ex:
|
|
errMsg = "error occurred while opening a session "
|
|
errMsg += "file '%s' ('%s')" % (self.filepath, ex)
|
|
raise SqlmapDataException(errMsg)
|
|
|
|
return threadData.hashDBCursor
|
|
|
|
cursor = property(_get_cursor)
|
|
|
|
def close(self):
|
|
threadData = getCurrentThreadData()
|
|
try:
|
|
if threadData.hashDBCursor:
|
|
threadData.hashDBCursor.close()
|
|
threadData.hashDBCursor.connection.close()
|
|
threadData.hashDBCursor = None
|
|
except:
|
|
pass
|
|
|
|
@staticmethod
|
|
def hashKey(key):
|
|
key = key.encode(UNICODE_ENCODING) if isinstance(key, unicode) else repr(key)
|
|
retVal = int(hashlib.md5(key).hexdigest()[:8], 16)
|
|
return retVal
|
|
|
|
def retrieve(self, key, unserialize=False):
|
|
retVal = None
|
|
if key and (self._write_cache or os.path.isfile(self.filepath)):
|
|
hash_ = HashDB.hashKey(key)
|
|
retVal = self._write_cache.get(hash_)
|
|
if not retVal:
|
|
while True:
|
|
try:
|
|
for row in self.cursor.execute("SELECT value FROM storage WHERE id=?", (hash_,)):
|
|
retVal = row[0]
|
|
except sqlite3.OperationalError, ex:
|
|
if not 'locked' in ex.message:
|
|
raise
|
|
else:
|
|
break
|
|
return retVal if not unserialize else unserializeObject(retVal)
|
|
|
|
def write(self, key, value, serialize=False):
|
|
if key:
|
|
hash_ = HashDB.hashKey(key)
|
|
self._cache_lock.acquire()
|
|
self._write_cache[hash_] = getUnicode(value) if not serialize else serializeObject(value)
|
|
self._cache_lock.release()
|
|
|
|
if getCurrentThreadName() in ('0', 'MainThread'):
|
|
self.flush()
|
|
|
|
def flush(self, forced=False):
|
|
if not self._write_cache:
|
|
return
|
|
|
|
if not forced and len(self._write_cache) < HASHDB_FLUSH_THRESHOLD:
|
|
return
|
|
|
|
self._cache_lock.acquire()
|
|
_ = self._write_cache
|
|
self._write_cache = {}
|
|
self._cache_lock.release()
|
|
|
|
try:
|
|
self.beginTransaction()
|
|
for hash_, value in _.items():
|
|
retries = 0
|
|
while True:
|
|
try:
|
|
try:
|
|
self.cursor.execute("INSERT INTO storage VALUES (?, ?)", (hash_, value,))
|
|
except sqlite3.IntegrityError:
|
|
self.cursor.execute("UPDATE storage SET value=? WHERE id=?", (value, hash_,))
|
|
except sqlite3.OperationalError, ex:
|
|
|
|
if retries == 0:
|
|
warnMsg = "there has been a problem while writing to "
|
|
warnMsg += "the session file ('%s')" % ex.message
|
|
logger.warn(warnMsg)
|
|
|
|
if retries >= HASHDB_FLUSH_RETRIES:
|
|
return
|
|
else:
|
|
retries += 1
|
|
time.sleep(1)
|
|
else:
|
|
break
|
|
finally:
|
|
self.endTransaction()
|
|
|
|
def beginTransaction(self):
|
|
threadData = getCurrentThreadData()
|
|
if not threadData.inTransaction:
|
|
self.cursor.execute('BEGIN TRANSACTION')
|
|
threadData.inTransaction = True
|
|
|
|
def endTransaction(self):
|
|
threadData = getCurrentThreadData()
|
|
if threadData.inTransaction:
|
|
try:
|
|
self.cursor.execute('END TRANSACTION')
|
|
except sqlite3.OperationalError:
|
|
pass
|
|
finally:
|
|
threadData.inTransaction = False
|