Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96f589f commit 2604e73Copy full SHA for 2604e73
1 file changed
lib/controller/controller.py
@@ -472,10 +472,10 @@ def start():
472
break
473
474
msg = "%s parameter '%s' " % (injection.place, injection.parameter)
475
- msg += "is vulnerable. Do you want to keep testing the others (if any)? [Y/n] "
476
- 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")
477
478
- if test[0] in ("n", "N"):
+ if test[0] not in ("y", "Y"):
479
proceed = False
480
paramKey = (conf.hostname, conf.path, None, None)
481
kb.testedParams.add(paramKey)
0 commit comments