Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ec44401

Browse files
committed
minor cosmetics
1 parent 428e817 commit ec44401

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/controller/checks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,14 @@ def checkSqlInjection(place, parameter, value):
142142

143143
if getErrorParsedDBMS() and getErrorParsedDBMS() != dbms\
144144
and kb.skipTests is None:
145-
message = "heuristic test showed that the back-end DBMS could be '%s'." % getErrorParsedDBMS()
145+
message = "parsed error message(s) showed that the back-end DBMS could be '%s'." % getErrorParsedDBMS()
146146
message += " do you want to skip test payloads specific for other DBMSes? [Y/n]"
147147
kb.skipTests = conf.realTest or readInput(message, default="Y") not in ("n", "N")
148148

149149
if kb.skipTests:
150150
debugMsg = "skipping test '%s' because " % title
151-
debugMsg += "the heuristic test showed that "
152-
debugMsg += "the back-end DBMS could be "
151+
debugMsg += "the parsed error message(s) showed "
152+
debugMsg += "that the back-end DBMS could be "
153153
debugMsg += "%s" % getErrorParsedDBMS()
154154
logger.debug(debugMsg)
155155

0 commit comments

Comments
 (0)