diff --git a/lib/request/redirecthandler.py b/lib/request/redirecthandler.py index 0809add2d..436f4f354 100644 --- a/lib/request/redirecthandler.py +++ b/lib/request/redirecthandler.py @@ -40,8 +40,8 @@ class SmartRedirectHandler(urllib2.HTTPRedirectHandler): def _ask_redirect_choice(self, redcode, redurl): if kb.redirectChoice is None: msg = "sqlmap got a %d redirect to " % redcode - msg += "'%s'. Do you want to follow? [Y/n] " % redurl - choice = readInput(msg, default="Y") + msg += "'%s'. Do you want to follow? [y/N] " % redurl + choice = readInput(msg, default="N") kb.redirectChoice = choice.upper()