From b0408f1bd8c86629747b1b3fc0b477e60a93b15e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0tampar?= Date: Mon, 20 Jul 2026 11:44:50 +0200 Subject: [PATCH] Fixing some wrong ptype values in boundaries.xml --- data/xml/boundaries.xml | 6 +++--- lib/core/settings.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/data/xml/boundaries.xml b/data/xml/boundaries.xml index cea5457cd..752f243bb 100644 --- a/data/xml/boundaries.xml +++ b/data/xml/boundaries.xml @@ -346,7 +346,7 @@ Formats: 5 9 1,2 - 2 + 4 ") WHERE [RANDNUM]=[RANDNUM] [GENERIC_SQL_COMMENT] @@ -457,7 +457,7 @@ Formats: 5 1 1,2 - 2 + 4 ")) AS [RANDSTR] WHERE [RANDNUM]=[RANDNUM] [GENERIC_SQL_COMMENT] @@ -550,7 +550,7 @@ Formats: 5 7 1 - 3 + 6 [RANDSTR1], [RANDSTR2] diff --git a/lib/core/settings.py b/lib/core/settings.py index 0a7a98953..eaa1f9216 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.10.7.146" +VERSION = "1.10.7.147" 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)