From 4cb83654dc4782e6c766d11cb64143d807e803b5 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sat, 18 Dec 2010 16:28:21 +0000 Subject: [PATCH] minor update --- lib/controller/checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index b29dad1e3..986e134ff 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -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