mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 19:55:47 +03:00
minor cosmetics
This commit is contained in:
parent
428e817a32
commit
ec4440108b
|
@ -142,14 +142,14 @@ def checkSqlInjection(place, parameter, value):
|
||||||
|
|
||||||
if getErrorParsedDBMS() and getErrorParsedDBMS() != dbms\
|
if getErrorParsedDBMS() and getErrorParsedDBMS() != dbms\
|
||||||
and kb.skipTests is None:
|
and kb.skipTests is None:
|
||||||
message = "heuristic test showed that the back-end DBMS could be '%s'." % getErrorParsedDBMS()
|
message = "parsed error message(s) showed that the back-end DBMS could be '%s'." % getErrorParsedDBMS()
|
||||||
message += " do you want to skip test payloads specific for other DBMSes? [Y/n]"
|
message += " do you want to skip test payloads specific for other DBMSes? [Y/n]"
|
||||||
kb.skipTests = conf.realTest or readInput(message, default="Y") not in ("n", "N")
|
kb.skipTests = conf.realTest or readInput(message, default="Y") not in ("n", "N")
|
||||||
|
|
||||||
if kb.skipTests:
|
if kb.skipTests:
|
||||||
debugMsg = "skipping test '%s' because " % title
|
debugMsg = "skipping test '%s' because " % title
|
||||||
debugMsg += "the heuristic test showed that "
|
debugMsg += "the parsed error message(s) showed "
|
||||||
debugMsg += "the back-end DBMS could be "
|
debugMsg += "that the back-end DBMS could be "
|
||||||
debugMsg += "%s" % getErrorParsedDBMS()
|
debugMsg += "%s" % getErrorParsedDBMS()
|
||||||
logger.debug(debugMsg)
|
logger.debug(debugMsg)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user