mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
minor removal of older stuff
This commit is contained in:
parent
da7f4eeffd
commit
037db9b3b8
|
@ -38,7 +38,7 @@ class SmartRedirectHandler(urllib2.HTTPRedirectHandler):
|
||||||
return retVal
|
return retVal
|
||||||
|
|
||||||
def _ask_redirect_choice(self, redcode, redurl):
|
def _ask_redirect_choice(self, redcode, redurl):
|
||||||
if kb.redirectChoice is None and kb.originalPage:
|
if kb.redirectChoice is None:
|
||||||
msg = "sqlmap got a %d redirect to " % redcode
|
msg = "sqlmap got a %d redirect to " % redcode
|
||||||
msg += "'%s'. Do you want to follow? [Y/n] " % redurl
|
msg += "'%s'. Do you want to follow? [Y/n] " % redurl
|
||||||
choice = readInput(msg, default="Y")
|
choice = readInput(msg, default="Y")
|
||||||
|
@ -90,7 +90,7 @@ class SmartRedirectHandler(urllib2.HTTPRedirectHandler):
|
||||||
dbgMsg += "redirect response content (%s)" % msg
|
dbgMsg += "redirect response content (%s)" % msg
|
||||||
logger.debug(dbgMsg)
|
logger.debug(dbgMsg)
|
||||||
|
|
||||||
if kb.redirectChoice == REDIRECTION.YES or kb.originalPage is None:
|
if kb.redirectChoice == REDIRECTION.YES:
|
||||||
req.headers[HTTPHEADER.HOST] = getHostHeader(redurl)
|
req.headers[HTTPHEADER.HOST] = getHostHeader(redurl)
|
||||||
result = urllib2.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers)
|
result = urllib2.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user