From 0d19af8bbc1502cb7bc879b4ba811bf568562c36 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 25 Jul 2023 10:45:33 +0200 Subject: [PATCH] Fixes #5476 --- data/txt/keywords.txt | 1 - lib/core/settings.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/data/txt/keywords.txt b/data/txt/keywords.txt index 9f5959970..a3019ae7e 100644 --- a/data/txt/keywords.txt +++ b/data/txt/keywords.txt @@ -899,7 +899,6 @@ PARTIAL PARTITION PARTITIONING PARTITIONS -PASSWORD PASSWORD_LOCK_TIME PATH PERCENT_RANK diff --git a/lib/core/settings.py b/lib/core/settings.py index e4ce8ed49..44b3104f0 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.7.7.1" +VERSION = "1.7.7.2" 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)