minor change in workflow

This commit is contained in:
Miroslav Stampar 2012-02-13 11:18:47 +00:00
parent 96f589fc89
commit 2604e73d88

View File

@ -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)