2010-03-15 17:24:43 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2012-07-12 21:38:03 +04:00
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2010-03-15 17:24:43 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import urllib2
|
2011-05-24 03:20:03 +04:00
|
|
|
import urlparse
|
2010-03-15 17:24:43 +03:00
|
|
|
|
2012-03-15 15:10:58 +04:00
|
|
|
from lib.core.data import kb
|
2011-03-17 14:25:37 +03:00
|
|
|
from lib.core.data import logger
|
2011-11-11 15:28:27 +04:00
|
|
|
from lib.core.common import getHostHeader
|
2011-03-17 15:21:27 +03:00
|
|
|
from lib.core.common import getUnicode
|
2011-09-28 12:13:46 +04:00
|
|
|
from lib.core.common import logHTTPTraffic
|
2012-03-15 15:10:58 +04:00
|
|
|
from lib.core.common import readInput
|
2011-03-18 03:24:02 +03:00
|
|
|
from lib.core.enums import HTTPHEADER
|
2012-03-15 15:10:58 +04:00
|
|
|
from lib.core.enums import REDIRECTION
|
2010-07-19 16:38:30 +04:00
|
|
|
from lib.core.exception import sqlmapConnectionException
|
2012-03-15 15:10:58 +04:00
|
|
|
from lib.core.settings import MAX_SINGLE_URL_REDIRECTIONS
|
|
|
|
from lib.core.settings import MAX_TOTAL_REDIRECTIONS
|
2011-03-17 09:39:05 +03:00
|
|
|
from lib.core.threads import getCurrentThreadData
|
2011-03-18 03:24:02 +03:00
|
|
|
from lib.request.basic import decodePage
|
2010-07-19 16:38:30 +04:00
|
|
|
|
2010-03-15 17:24:43 +03:00
|
|
|
class SmartRedirectHandler(urllib2.HTTPRedirectHandler):
|
2011-11-11 15:28:27 +04:00
|
|
|
def _get_header_redirect(self, headers):
|
|
|
|
retVal = None
|
|
|
|
|
2012-03-15 15:10:58 +04:00
|
|
|
if headers:
|
|
|
|
if "location" in headers:
|
|
|
|
retVal = headers.getheaders("location")[0].split("?")[0]
|
|
|
|
elif "uri" in headers:
|
|
|
|
retVal = headers.getheaders("uri")[0].split("?")[0]
|
2011-11-11 15:28:27 +04:00
|
|
|
|
|
|
|
return retVal
|
|
|
|
|
2012-03-15 15:10:58 +04:00
|
|
|
def _ask_redirect_choice(self, redcode, redurl):
|
2012-03-19 13:38:27 +04:00
|
|
|
if kb.redirectChoice is None:
|
2012-03-15 15:10:58 +04:00
|
|
|
msg = "sqlmap got a %d redirect to " % redcode
|
2012-03-22 03:15:59 +04:00
|
|
|
msg += "'%s'. Do you want to follow? [Y/n] " % redurl
|
|
|
|
choice = readInput(msg, default="Y")
|
2012-03-15 15:10:58 +04:00
|
|
|
|
2012-03-18 21:27:08 +04:00
|
|
|
kb.redirectChoice = choice.upper()
|
2012-03-15 15:10:58 +04:00
|
|
|
|
2012-03-15 16:14:50 +04:00
|
|
|
def _process_http_redirect(self, result, headers, code, content, msg, redurl):
|
2011-03-18 03:24:02 +03:00
|
|
|
content = decodePage(content, headers.get(HTTPHEADER.CONTENT_ENCODING), headers.get(HTTPHEADER.CONTENT_TYPE))
|
|
|
|
|
2011-03-17 09:39:05 +03:00
|
|
|
threadData = getCurrentThreadData()
|
2011-03-17 14:25:37 +03:00
|
|
|
threadData.lastRedirectMsg = (threadData.lastRequestUID, content)
|
2011-03-17 09:39:05 +03:00
|
|
|
|
2011-03-17 15:35:40 +03:00
|
|
|
responseMsg = "HTTP response "
|
2011-03-17 15:21:27 +03:00
|
|
|
responseMsg += "[#%d] (%d %s):\n" % (threadData.lastRequestUID, code, getUnicode(msg))
|
2011-03-17 15:23:56 +03:00
|
|
|
|
2011-03-17 15:21:27 +03:00
|
|
|
if headers:
|
2011-11-21 00:14:47 +04:00
|
|
|
logHeaders = "\n".join("%s: %s" % (key.capitalize() if isinstance(key, basestring) else key, getUnicode(value)) for (key, value) in headers.items())
|
2011-03-17 15:21:27 +03:00
|
|
|
else:
|
|
|
|
logHeaders = ""
|
|
|
|
|
2011-09-28 12:13:46 +04:00
|
|
|
logHTTPTraffic(threadData.lastRequestMsg, "%s%s" % (responseMsg, logHeaders))
|
|
|
|
|
|
|
|
responseMsg += getUnicode(logHeaders)
|
2011-03-17 15:21:27 +03:00
|
|
|
|
|
|
|
logger.log(7, responseMsg)
|
|
|
|
|
2012-03-15 15:10:58 +04:00
|
|
|
if "set-cookie" in headers:
|
|
|
|
kb.redirectSetCookie = headers["set-cookie"].split("; path")[0]
|
2010-12-03 20:41:10 +03:00
|
|
|
|
2012-03-15 15:10:58 +04:00
|
|
|
result.redcode = code
|
2012-03-15 16:14:50 +04:00
|
|
|
result.redurl = redurl
|
2010-03-16 17:30:57 +03:00
|
|
|
|
2010-03-15 17:24:43 +03:00
|
|
|
return result
|
|
|
|
|
|
|
|
def http_error_302(self, req, fp, code, msg, headers):
|
2012-03-15 16:14:50 +04:00
|
|
|
content = None
|
2012-03-15 15:10:58 +04:00
|
|
|
redurl = self._get_header_redirect(headers)
|
|
|
|
|
2012-07-17 02:19:33 +04:00
|
|
|
if redurl:
|
|
|
|
if not urlparse.urlsplit(redurl).netloc:
|
|
|
|
redurl = urlparse.urljoin(req.get_full_url(), redurl)
|
2012-03-15 16:14:50 +04:00
|
|
|
|
2012-07-17 02:19:33 +04:00
|
|
|
self._infinite_loop_check(req)
|
|
|
|
self._ask_redirect_choice(code, redurl)
|
2011-03-17 14:25:37 +03:00
|
|
|
|
|
|
|
try:
|
|
|
|
content = fp.read()
|
|
|
|
except Exception, msg:
|
2011-04-30 17:20:05 +04:00
|
|
|
dbgMsg = "there was a problem while retrieving "
|
2011-03-17 14:25:37 +03:00
|
|
|
dbgMsg += "redirect response content (%s)" % msg
|
|
|
|
logger.debug(dbgMsg)
|
|
|
|
|
2012-07-17 02:19:33 +04:00
|
|
|
if redurl and kb.redirectChoice == REDIRECTION.YES:
|
2012-03-15 16:14:50 +04:00
|
|
|
req.headers[HTTPHEADER.HOST] = getHostHeader(redurl)
|
2012-03-15 15:10:58 +04:00
|
|
|
result = urllib2.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers)
|
|
|
|
else:
|
|
|
|
result = fp
|
2011-11-11 15:28:27 +04:00
|
|
|
|
2012-03-15 16:14:50 +04:00
|
|
|
return self._process_http_redirect(result, headers, code, content, msg, redurl)
|
|
|
|
|
|
|
|
http_error_301 = http_error_303 = http_error_307 = http_error_302
|
2010-07-19 16:38:30 +04:00
|
|
|
|
2012-03-15 15:10:58 +04:00
|
|
|
def _infinite_loop_check(self, req):
|
|
|
|
if hasattr(req, 'redirect_dict') and (req.redirect_dict.get(req.get_full_url(), 0) >= MAX_SINGLE_URL_REDIRECTIONS or len(req.redirect_dict) >= MAX_TOTAL_REDIRECTIONS):
|
2011-04-30 17:20:05 +04:00
|
|
|
errMsg = "infinite redirect loop detected (%s). " % ", ".join(item for item in req.redirect_dict.keys())
|
2010-07-19 16:38:30 +04:00
|
|
|
errMsg += "please check all provided parameters and/or provide missing ones."
|
|
|
|
raise sqlmapConnectionException, errMsg
|