mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
minor update
This commit is contained in:
parent
36862e2efa
commit
4cb83654dc
|
@ -412,12 +412,12 @@ def checkSqlInjection(place, parameter, value):
|
|||
warnMsg = "Ctrl+C detected in detection phase"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
message = "How do you want to proceed? [(S)kip current test/(a)bort detection/(q)uit]"
|
||||
message = "How do you want to proceed? [(S)kip test/(n)ext parameter/(q)uit]"
|
||||
test = readInput(message, default="S")
|
||||
|
||||
if not test or test[0] in ("s", "S"):
|
||||
pass
|
||||
elif test[0] in ("a", "A"):
|
||||
elif test[0] in ("n", "N"):
|
||||
break
|
||||
elif test[0] in ("q", "Q"):
|
||||
raise sqlmapUserQuitException
|
||||
|
|
Loading…
Reference in New Issue
Block a user