Minor update

This commit is contained in:
Miroslav Stampar
2026-02-02 22:23:23 +01:00
parent 4af3195041
commit 4a913d2ab1
3 changed files with 6 additions and 6 deletions

View File

@@ -463,11 +463,11 @@ class Backend(object):
@staticmethod
def setArch():
msg = "what is the back-end database management system architecture?"
msg += "\n[1] 32-bit (default)"
msg += "\n[2] 64-bit"
msg += "\n[1] 32-bit"
msg += "\n[2] 64-bit (default)"
while True:
choice = readInput(msg, default='1')
choice = readInput(msg, default='2')
if hasattr(choice, "isdigit") and choice.isdigit() and int(choice) in (1, 2):
kb.arch = 32 if int(choice) == 1 else 64

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.2.4"
VERSION = "1.10.2.5"
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)