From 96f589fc899d82bc0e7453628da65edcd4b1df2b Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sun, 12 Feb 2012 19:22:33 +0000 Subject: [PATCH] minor fix --- lib/controller/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/controller.py b/lib/controller/controller.py index d4d0d7511..79abf6532 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -384,7 +384,7 @@ def start(): skip |= (place == PLACE.UA and intersect(USER_AGENT_ALIASES, conf.skip, True) not in ([], None)) skip |= (place == PLACE.REFERER and intersect(REFERER_ALIASES, conf.skip, True) not in ([], None)) - skip |= (place == PLACE.COOKIE and intersect('cookie', conf.skip, True) not in ([], None)) + skip |= (place == PLACE.COOKIE and intersect(PLACE.COOKIE, conf.skip, True) not in ([], None)) skip &= not (place == PLACE.UA and intersect(USER_AGENT_ALIASES, conf.testParameter, True)) skip &= not (place == PLACE.REFERER and intersect(REFERER_ALIASES, conf.testParameter, True)) @@ -472,7 +472,7 @@ def start(): break msg = "%s parameter '%s' " % (injection.place, injection.parameter) - msg += "is vulnerable. Do you want to keep testing the others? [Y/n] " + msg += "is vulnerable. Do you want to keep testing the others (if any)? [Y/n] " test = readInput(msg, default="Y") if test[0] in ("n", "N"):