From 06cd97f0979d0ac88b73def309bd51191159de81 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 2 Aug 2021 02:38:41 +0200 Subject: [PATCH] Trivial update --- lib/core/settings.py | 2 +- plugins/dbms/mysql/fingerprint.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index c088ea83e..823f60f66 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.5.7.9" +VERSION = "1.5.8.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) diff --git a/plugins/dbms/mysql/fingerprint.py b/plugins/dbms/mysql/fingerprint.py index 1b6e66545..fc3c223f5 100644 --- a/plugins/dbms/mysql/fingerprint.py +++ b/plugins/dbms/mysql/fingerprint.py @@ -45,9 +45,9 @@ class Fingerprint(GenericFingerprint): # Reference: https://dev.mysql.com/doc/relnotes/mysql/./en/ versions = ( - (80000, 80028), # MySQL 8.0 + (80000, 80029), # MySQL 8.0 (60000, 60014), # MySQL 6.0 - (50700, 50736), # MySQL 5.7 + (50700, 50737), # MySQL 5.7 (50600, 50652), # MySQL 5.6 (50500, 50563), # MySQL 5.5 (50400, 50404), # MySQL 5.4