Minor update

This commit is contained in:
Miroslav Stampar
2026-01-27 00:33:22 +01:00
parent e6e1bdc5b7
commit 657eb464f8
4 changed files with 4 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ from lib.core.enums import OS
from thirdparty import six
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.10.1.56"
VERSION = "1.10.1.57"
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)

View File

@@ -23,7 +23,6 @@ from lib.core.enums import MKSTEMP_PREFIX
from lib.core.exception import SqlmapMissingDependence
from lib.core.exception import SqlmapSystemException
from lib.core.settings import IS_WIN
from thirdparty.six.moves import queue as _queue
from thirdparty.six.moves import configparser as _configparser
class NcursesUI:
@@ -37,7 +36,6 @@ class NcursesUI:
self.fields = {}
self.running = False
self.process = None
self.queue = None
# Initialize colors
curses.start_color()