From aacb360d46a5353acf427c36658abc978d67dbe2 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 4 May 2022 18:14:43 +0200 Subject: [PATCH] One patch related to #5087 --- lib/core/defaults.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/defaults.py b/lib/core/defaults.py index fb68b3d23..d4109c94f 100644 --- a/lib/core/defaults.py +++ b/lib/core/defaults.py @@ -16,7 +16,7 @@ _defaults = { "timeout": 30, "retries": 3, "csrfRetries": 0, - "saFreq": 0, + "safeFreq": 0, "threads": 1, "level": 1, "risk": 1, diff --git a/lib/core/settings.py b/lib/core/settings.py index 7a04ca0df..c3ba758e7 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.6.4.6" +VERSION = "1.6.5.0" 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)