Minor text update

This commit is contained in:
stamparm 2013-07-08 12:38:36 +02:00
parent a530817727
commit d0e79a4d15

View File

@ -716,13 +716,13 @@ def checkSuhosinPatch(injection):
def heuristicCheckSqlInjection(place, parameter): def heuristicCheckSqlInjection(place, parameter):
if kb.nullConnection: if kb.nullConnection:
debugMsg = "heuristic checking skipped " debugMsg = "heuristic check skipped "
debugMsg += "because NULL connection used" debugMsg += "because NULL connection used"
logger.debug(debugMsg) logger.debug(debugMsg)
return None return None
if wasLastResponseDBMSError(): if wasLastResponseDBMSError():
debugMsg = "heuristic checking skipped " debugMsg = "heuristic check skipped "
debugMsg += "because original page content " debugMsg += "because original page content "
debugMsg += "contains DBMS error" debugMsg += "contains DBMS error"
logger.debug(debugMsg) logger.debug(debugMsg)
@ -1016,7 +1016,7 @@ def checkWaf():
if not conf.checkWaf: if not conf.checkWaf:
return False return False
infoMsg = "heuristic checking if the target is protected by " infoMsg = "heuristically checking if the target is protected by "
infoMsg += "some kind of WAF/IPS/IDS" infoMsg += "some kind of WAF/IPS/IDS"
logger.info(infoMsg) logger.info(infoMsg)