Skip to content

Commit 8466a89

Browse files
committed
Trivial update
1 parent acc7b16 commit 8466a89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.7.6.0"
23+
VERSION = "1.7.6.1"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

plugins/dbms/mysql/fingerprint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def _commentCheck(self):
4545
# Reference: https://dev.mysql.com/doc/relnotes/mysql/<major>.<minor>/en/
4646

4747
versions = (
48-
(80000, 80029), # MySQL 8.0
48+
(80000, 80033), # MySQL 8.0
4949
(60000, 60014), # MySQL 6.0
50-
(50700, 50741), # MySQL 5.7
50+
(50700, 50742), # MySQL 5.7
5151
(50600, 50652), # MySQL 5.6
5252
(50500, 50563), # MySQL 5.5
5353
(50400, 50404), # MySQL 5.4

0 commit comments

Comments
 (0)