File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3708,7 +3708,7 @@ def priorityFunction(test):
3708
3708
if test .stype == PAYLOAD .TECHNIQUE .UNION :
3709
3709
retVal = SORT_ORDER .LAST
3710
3710
3711
- elif "details" in test and "dbms" in test .details :
3711
+ elif "details" in test and "dbms" in ( test .details or {}) :
3712
3712
if intersect (test .details .dbms , Backend .getIdentifiedDbms ()):
3713
3713
retVal = SORT_ORDER .SECOND
3714
3714
else :
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.6.8.4 "
23
+ VERSION = "1.6.9.0 "
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 )
You can’t perform that action at this time.
0 commit comments