From 2604e73d888e1bb94295a08ccb9d05ec1ad9fb79 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 13 Feb 2012 11:18:47 +0000 Subject: [PATCH] minor change in workflow --- lib/controller/controller.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/controller/controller.py b/lib/controller/controller.py index 79abf6532..128f464fb 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -472,10 +472,10 @@ def start(): break msg = "%s parameter '%s' " % (injection.place, injection.parameter) - msg += "is vulnerable. Do you want to keep testing the others (if any)? [Y/n] " - test = readInput(msg, default="Y") + msg += "is vulnerable. Do you want to keep testing the others (if any)? [y/N] " + test = readInput(msg, default="N") - if test[0] in ("n", "N"): + if test[0] not in ("y", "Y"): proceed = False paramKey = (conf.hostname, conf.path, None, None) kb.testedParams.add(paramKey)