Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0986ec8 commit d7d5654Copy full SHA for d7d5654
2 files changed
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from lib.core.revision import getRevisionNumber
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.0.6.14"
+VERSION = "1.0.6.15"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
plugins/dbms/mysql/fingerprint.py
@@ -40,17 +40,18 @@ def _commentCheck(self):
40
41
return None
42
43
- # MySQL valid versions updated on 04/2011
+ # Reference: https://downloads.mysql.com/archives/community/
44
versions = (
45
(32200, 32235), # MySQL 3.22
46
(32300, 32359), # MySQL 3.23
47
(40000, 40032), # MySQL 4.0
48
(40100, 40131), # MySQL 4.1
49
(50000, 50092), # MySQL 5.0
50
- (50100, 50156), # MySQL 5.1
+ (50100, 50172), # MySQL 5.1
51
(50400, 50404), # MySQL 5.4
52
- (50500, 50521), # MySQL 5.5
53
- (50600, 50604), # MySQL 5.6
+ (50500, 50549), # MySQL 5.5
+ (50600, 50630), # MySQL 5.6
54
+ (50700, 50712), # MySQL 5.7
55
(60000, 60014), # MySQL 6.0
56
)
57
0 commit comments