File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.7.6.0 "
23
+ VERSION = "1.7.6.1 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ def _commentCheck(self):
45
45
# Reference: https://dev.mysql.com/doc/relnotes/mysql/<major>.<minor>/en/
46
46
47
47
versions = (
48
- (80000 , 80029 ), # MySQL 8.0
48
+ (80000 , 80033 ), # MySQL 8.0
49
49
(60000 , 60014 ), # MySQL 6.0
50
- (50700 , 50741 ), # MySQL 5.7
50
+ (50700 , 50742 ), # MySQL 5.7
51
51
(50600 , 50652 ), # MySQL 5.6
52
52
(50500 , 50563 ), # MySQL 5.5
53
53
(50400 , 50404 ), # MySQL 5.4
You can’t perform that action at this time.
0 commit comments