File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
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.2.14 "
23
+ VERSION = "1.7.2.15 "
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 @@ -47,11 +47,11 @@ def _commentCheck(self):
47
47
versions = (
48
48
(80000 , 80029 ), # MySQL 8.0
49
49
(60000 , 60014 ), # MySQL 6.0
50
- (50700 , 50739 ), # MySQL 5.7
50
+ (50700 , 50741 ), # MySQL 5.7
51
51
(50600 , 50652 ), # MySQL 5.6
52
52
(50500 , 50563 ), # MySQL 5.5
53
53
(50400 , 50404 ), # MySQL 5.4
54
- (50100 , 50175 ), # MySQL 5.1
54
+ (50100 , 50174 ), # MySQL 5.1
55
55
(50000 , 50097 ), # MySQL 5.0
56
56
(40100 , 40131 ), # MySQL 4.1
57
57
(40000 , 40032 ), # MySQL 4.0
Original file line number Diff line number Diff line change @@ -131,7 +131,9 @@ def checkDbms(self):
131
131
infoMsg = "actively fingerprinting %s" % DBMS .PGSQL
132
132
logger .info (infoMsg )
133
133
134
- if inject .checkBooleanExpression ("BIT_COUNT(NULL) IS NULL" ):
134
+ if inject .checkBooleanExpression ("REGEXP_COUNT(NULL,NULL) IS NULL" ):
135
+ Backend .setVersion (">= 15.0" )
136
+ elif inject .checkBooleanExpression ("BIT_COUNT(NULL) IS NULL" ):
135
137
Backend .setVersion (">= 14.0" )
136
138
elif inject .checkBooleanExpression ("GEN_RANDOM_UUID() IS NOT NULL" ):
137
139
Backend .setVersion (">= 13.0" )
You can’t perform that action at this time.
0 commit comments