Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2604e73

Browse files
committed
minor change in workflow
1 parent 96f589f commit 2604e73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/controller/controller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,10 @@ def start():
472472
break
473473

474474
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")
475+
msg += "is vulnerable. Do you want to keep testing the others (if any)? [y/N] "
476+
test = readInput(msg, default="N")
477477

478-
if test[0] in ("n", "N"):
478+
if test[0] not in ("y", "Y"):
479479
proceed = False
480480
paramKey = (conf.hostname, conf.path, None, None)
481481
kb.testedParams.add(paramKey)

0 commit comments

Comments
 (0)