Minor update

This commit is contained in:
Miroslav Štampar 2026-06-21 23:30:52 +02:00
parent 9d8c1021f3
commit 46fc5acbfc
4 changed files with 53 additions and 7 deletions

View file

@ -23,8 +23,11 @@ class Replication(object):
"""
def __init__(self, dbpath):
self.dbpath = dbpath
self.connection = None
self.cursor = None
try:
self.dbpath = dbpath
self.connection = sqlite3.connect(dbpath)
self.connection.isolation_level = None
self.cursor = self.connection.cursor()
@ -120,8 +123,17 @@ class Replication(object):
return Replication.Table(parent=self, name=tblname, columns=columns, typeless=typeless)
def __del__(self):
self.cursor.close()
self.connection.close()
try:
if self.cursor is not None:
self.cursor.close()
except Exception:
pass
try:
if self.connection is not None:
self.connection.close()
except Exception:
pass
# sqlite data types
NULL = DataType('NULL')

View file

@ -20,7 +20,7 @@ from lib.core.enums import OS
from thirdparty import six
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.10.6.139"
VERSION = "1.10.6.140"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)