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 524c1d3 commit e88687bCopy full SHA for e88687b
1 file changed
lib/request/redirecthandler.py
@@ -40,8 +40,8 @@ def _get_header_redirect(self, headers):
40
def _ask_redirect_choice(self, redcode, redurl):
41
if kb.redirectChoice is None:
42
msg = "sqlmap got a %d redirect to " % redcode
43
- msg += "'%s'. Do you want to follow? [y/N] " % redurl
44
- choice = readInput(msg, default="N")
+ msg += "'%s'. Do you want to follow? [Y/n] " % redurl
+ choice = readInput(msg, default="Y")
45
46
kb.redirectChoice = choice.upper()
47
0 commit comments