Skip to content

Commit 9d55af9

Browse files
authored
Merge branch 'master' into add-sortable-tables-to-html-dump
2 parents 5b33feb + 23dda10 commit 9d55af9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty import six
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.9.3.2"
22+
VERSION = "1.9.3.3"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

sqlmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ def main():
549549
errMsg = maskSensitiveData(errMsg)
550550
excMsg = maskSensitiveData(excMsg)
551551

552-
if conf.get("api") or not valid:
552+
if conf.get("api") or not valid or kb.lastCtrlCTime:
553553
logger.critical("%s\n%s" % (errMsg, excMsg))
554554
else:
555555
logger.critical(errMsg)

0 commit comments

Comments
 (0)