File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 19
19
from thirdparty import six
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.9.3.2 "
22
+ VERSION = "1.9.3.3 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
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 @@ -549,7 +549,7 @@ def main():
549
549
errMsg = maskSensitiveData (errMsg )
550
550
excMsg = maskSensitiveData (excMsg )
551
551
552
- if conf .get ("api" ) or not valid :
552
+ if conf .get ("api" ) or not valid or kb . lastCtrlCTime :
553
553
logger .critical ("%s\n %s" % (errMsg , excMsg ))
554
554
else :
555
555
logger .critical (errMsg )
You can’t perform that action at this time.
0 commit comments