sqlmap/lib/request/redirecthandler.py

183 lines
7.3 KiB
Python
Raw Normal View History

2019-03-21 16:00:09 +03:00
#!/usr/bin/env python2
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
"""
import io
2017-07-04 13:14:17 +03:00
import time
2015-02-04 17:01:03 +03:00
import types
2013-08-01 21:48:20 +04:00
from lib.core.data import conf
2012-03-15 15:10:58 +04:00
from lib.core.data import kb
from lib.core.data import logger
2011-11-11 15:28:27 +04:00
from lib.core.common import getHostHeader
2019-01-22 03:20:27 +03:00
from lib.core.common import getSafeExString
from lib.core.common import logHTTPTraffic
2012-03-15 15:10:58 +04:00
from lib.core.common import readInput
2019-05-06 01:54:21 +03:00
from lib.core.convert import getUnicode
2012-12-07 14:52:21 +04:00
from lib.core.enums import CUSTOM_LOGGING
from lib.core.enums import HTTP_HEADER
2013-01-18 00:49:58 +04:00
from lib.core.enums import HTTPMETHOD
2012-03-15 15:10:58 +04:00
from lib.core.enums import REDIRECTION
from lib.core.exception import SqlmapConnectionException
from lib.core.settings import DEFAULT_COOKIE_DELIMITER
2012-12-07 15:14:33 +04:00
from lib.core.settings import MAX_CONNECTION_CHUNK_SIZE
2012-12-07 18:29:54 +04:00
from lib.core.settings import MAX_CONNECTION_TOTAL_SIZE
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
from lib.core.threads import getCurrentThreadData
2011-03-18 03:24:02 +03:00
from lib.request.basic import decodePage
2015-10-15 14:07:43 +03:00
from lib.request.basic import parseResponse
from thirdparty.six.moves import urllib as _urllib
class SmartRedirectHandler(_urllib.request.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]
2012-03-15 15:10:58 +04:00
elif "uri" in headers:
retVal = headers.getheaders("uri")[0]
2011-11-11 15:28:27 +04:00
return retVal
2013-01-18 00:49:58 +04:00
def _ask_redirect_choice(self, redcode, redurl, method):
2013-01-17 14:50:12 +04:00
with kb.locks.redirect:
if kb.redirectChoice is None:
msg = "sqlmap got a %d redirect to " % redcode
msg += "'%s'. Do you want to follow? [Y/n] " % redurl
2012-03-15 15:10:58 +04:00
2017-04-18 16:48:05 +03:00
kb.redirectChoice = REDIRECTION.YES if readInput(msg, default='Y', boolean=True) else REDIRECTION.NO
2012-03-15 15:10:58 +04:00
if kb.redirectChoice == REDIRECTION.YES and method == HTTPMETHOD.POST and kb.resendPostOnRedirect is None:
msg = "redirect is a result of a "
msg += "POST request. Do you want to "
msg += "resend original POST data to a new "
msg += "location? [%s] " % ("Y/n" if not kb.originalPage else "y/N")
2017-04-19 15:46:27 +03:00
kb.resendPostOnRedirect = readInput(msg, default=('Y' if not kb.originalPage else 'N'), boolean=True)
if kb.resendPostOnRedirect:
self.redirect_request = self._redirect_request
2013-01-18 00:49:58 +04:00
def _redirect_request(self, req, fp, code, msg, headers, newurl):
newurl = newurl.replace(' ', '%20')
return _urllib.request.Request(newurl, data=req.data, headers=req.headers, origin_req_host=req.get_origin_req_host())
2013-01-18 00:49:58 +04:00
def http_error_302(self, req, fp, code, msg, headers):
2017-07-04 13:14:17 +03:00
start = time.time()
2012-03-15 16:14:50 +04:00
content = None
redurl = self._get_header_redirect(headers) if not conf.ignoreRedirects else None
2012-03-15 15:10:58 +04:00
2012-12-07 15:14:33 +04:00
try:
2012-12-07 18:29:54 +04:00
content = fp.read(MAX_CONNECTION_TOTAL_SIZE)
2019-01-22 03:20:27 +03:00
except Exception as ex:
2012-12-07 15:14:33 +04:00
dbgMsg = "there was a problem while retrieving "
2019-01-22 03:20:27 +03:00
dbgMsg += "redirect response content ('%s')" % getSafeExString(ex)
2012-12-07 15:14:33 +04:00
logger.debug(dbgMsg)
2012-12-07 18:29:54 +04:00
finally:
if content:
try: # try to write it back to the read buffer so we could reuse it in further steps
fp.fp._rbuf.truncate(0)
fp.fp._rbuf.write(content)
except:
pass
2012-12-07 15:14:33 +04:00
content = decodePage(content, headers.get(HTTP_HEADER.CONTENT_ENCODING), headers.get(HTTP_HEADER.CONTENT_TYPE))
2012-12-07 14:52:21 +04:00
threadData = getCurrentThreadData()
threadData.lastRedirectMsg = (threadData.lastRequestUID, content)
2012-12-07 14:52:21 +04:00
redirectMsg = "HTTP redirect "
2017-07-04 13:14:17 +03:00
redirectMsg += "[#%d] (%d %s):\r\n" % (threadData.lastRequestUID, code, getUnicode(msg))
2012-12-07 14:52:21 +04:00
if headers:
logHeaders = "\r\n".join("%s: %s" % (getUnicode(key.capitalize() if hasattr(key, "capitalize") else key), getUnicode(value)) for (key, value) in headers.items())
2012-12-07 14:52:21 +04:00
else:
logHeaders = ""
redirectMsg += logHeaders
2012-12-07 15:14:33 +04:00
if content:
2017-07-04 13:14:17 +03:00
redirectMsg += "\r\n\r\n%s" % getUnicode(content[:MAX_CONNECTION_CHUNK_SIZE])
2012-12-07 14:52:21 +04:00
2017-07-04 13:14:17 +03:00
logHTTPTraffic(threadData.lastRequestMsg, redirectMsg, start, time.time())
2012-12-07 14:52:21 +04:00
logger.log(CUSTOM_LOGGING.TRAFFIC_IN, redirectMsg)
2012-12-07 14:23:18 +04:00
2012-07-17 02:19:33 +04:00
if redurl:
2014-04-07 23:01:40 +04:00
try:
if not _urllib.parse.urlsplit(redurl).netloc:
redurl = _urllib.parse.urljoin(req.get_full_url(), redurl)
2014-04-07 23:01:40 +04:00
self._infinite_loop_check(req)
self._ask_redirect_choice(code, redurl, req.get_method())
except ValueError:
redurl = None
result = fp
2012-07-17 02:19:33 +04:00
if redurl and kb.redirectChoice == REDIRECTION.YES:
2015-10-15 14:07:43 +03:00
parseResponse(content, headers)
req.headers[HTTP_HEADER.HOST] = getHostHeader(redurl)
if headers and HTTP_HEADER.SET_COOKIE in headers:
2018-06-29 23:37:57 +03:00
cookies = dict()
2017-03-27 23:36:04 +03:00
delimiter = conf.cookieDel or DEFAULT_COOKIE_DELIMITER
2018-06-29 23:37:57 +03:00
last = None
for part in req.headers.get(HTTP_HEADER.COOKIE, "").split(delimiter) + headers.getheaders(HTTP_HEADER.SET_COOKIE):
if '=' in part:
part = part.strip()
key, value = part.split('=', 1)
cookies[key] = value
last = key
elif last:
2018-06-29 23:48:43 +03:00
cookies[last] += "%s%s" % (delimiter, part)
2018-06-29 23:37:57 +03:00
req.headers[HTTP_HEADER.COOKIE] = delimiter.join("%s=%s" % (key, cookies[key]) for key in cookies)
2014-06-10 23:57:54 +04:00
try:
result = _urllib.request.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers)
except _urllib.error.HTTPError as ex:
result = ex
2015-02-04 17:01:03 +03:00
# Dirty hack for http://bugs.python.org/issue15701
try:
result.info()
except AttributeError:
def _(self):
return getattr(self, "hdrs") or {}
result.info = types.MethodType(_, result)
if not hasattr(result, "read"):
def _(self, length=None):
return ex.msg
2015-02-04 17:01:03 +03:00
result.read = types.MethodType(_, result)
if not getattr(result, "url", None):
result.url = redurl
if not getattr(result, "code", None):
result.code = 999
2014-06-10 23:57:54 +04:00
except:
redurl = None
result = fp
fp.read = io.BytesIO("").read
2012-03-15 15:10:58 +04:00
else:
result = fp
2011-11-11 15:28:27 +04:00
2013-04-30 20:08:26 +04:00
threadData.lastRedirectURL = (threadData.lastRequestUID, redurl)
result.redcode = code
result.redurl = redurl
return result
2012-03-15 16:14:50 +04:00
http_error_301 = http_error_303 = http_error_307 = http_error_302
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())
2014-01-02 14:06:19 +04:00
errMsg += "Please check all provided parameters and/or provide missing ones"
raise SqlmapConnectionException(errMsg)