File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -666,8 +666,9 @@ def _(page):
666666 errMsg += "at the back-end web application"
667667 logger .error (errMsg )
668668
669- message = "do you want to skip those kind of cases (and save scanning time)? [Y/n] "
670- kb .ignoreCasted = readInput (message , default = 'Y' ).upper () != 'N'
669+ if kb .ignoreCasted is None :
670+ message = "do you want to skip those kind of parameters (and save scanning time)? %s " % ("[Y/n]" if conf .multipleTargets else "[y/N]" )
671+ kb .ignoreCasted = readInput (message , default = 'Y' if conf .multipleTargets else 'N' ).upper () != 'N'
671672
672673 elif result :
673674 infoMsg += "be injectable (possible DBMS: %s)" % (Format .getErrorParsedDBMSes () or UNKNOWN_DBMS_VERSION )
Original file line number Diff line number Diff line change @@ -1496,7 +1496,7 @@ def __setKnowledgeBaseAttributes(flushAll=True):
14961496 kb .htmlFp = []
14971497 kb .httpErrorCodes = {}
14981498 kb .inferenceMode = False
1499- kb .ignoreCasted = False
1499+ kb .ignoreCasted = None
15001500 kb .ignoreNotFound = False
15011501 kb .ignoreTimeout = False
15021502 kb .injection = InjectionDict ()
You can’t perform that action at this time.
0 commit comments