2009-10-27 08:36:34 +08:00
|
|
|
"""
|
|
|
|
Cross Site Request Forgery Middleware.
|
|
|
|
|
|
|
|
This module provides a middleware that implements protection
|
|
|
|
against request forgeries from other sites.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import itertools
|
|
|
|
import re
|
|
|
|
import random
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
from django.core.urlresolvers import get_callable
|
|
|
|
from django.utils.cache import patch_vary_headers
|
|
|
|
from django.utils.hashcompat import md5_constructor
|
2010-10-06 23:02:26 +08:00
|
|
|
from django.utils.log import getLogger
|
2009-10-27 08:36:34 +08:00
|
|
|
from django.utils.safestring import mark_safe
|
Fixed #14445 - Use HMAC and constant-time comparison functions where needed.
All adhoc MAC applications have been updated to use HMAC, using SHA1 to
generate unique keys for each application based on the SECRET_KEY, which is
common practice for this situation. In all cases, backwards compatibility
with existing hashes has been maintained, aiming to phase this out as per
the normal deprecation process. In this way, under most normal
circumstances the old hashes will have expired (e.g. by session expiration
etc.) before they become invalid.
In the case of the messages framework and the cookie backend, which was
already using HMAC, there is the possibility of a backwards incompatibility
if the SECRET_KEY is shorter than the default 50 bytes, but the low
likelihood and low impact meant compatibility code was not worth it.
All known instances where tokens/hashes were compared using simple string
equality, which could potentially open timing based attacks, have also been
fixed using a constant-time comparison function.
There are no known practical attacks against the existing implementations,
so these security improvements will not be backported.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-15 04:54:30 +08:00
|
|
|
from django.utils.crypto import constant_time_compare
|
2009-10-27 08:36:34 +08:00
|
|
|
|
|
|
|
_POST_FORM_RE = \
|
|
|
|
re.compile(r'(<form\W[^>]*\bmethod\s*=\s*(\'|"|)POST(\'|"|)\b[^>]*>)', re.IGNORECASE)
|
|
|
|
|
|
|
|
_HTML_TYPES = ('text/html', 'application/xhtml+xml')
|
|
|
|
|
2010-10-06 23:02:26 +08:00
|
|
|
logger = getLogger('django.request')
|
2010-10-04 23:12:39 +08:00
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
# Use the system (hardware-based) random number generator if it exists.
|
|
|
|
if hasattr(random, 'SystemRandom'):
|
|
|
|
randrange = random.SystemRandom().randrange
|
|
|
|
else:
|
|
|
|
randrange = random.randrange
|
|
|
|
_MAX_CSRF_KEY = 18446744073709551616L # 2 << 63
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
REASON_NO_REFERER = "Referer checking failed - no Referer."
|
|
|
|
REASON_BAD_REFERER = "Referer checking failed - %s does not match %s."
|
|
|
|
REASON_NO_COOKIE = "No CSRF or session cookie."
|
|
|
|
REASON_NO_CSRF_COOKIE = "CSRF cookie not set."
|
|
|
|
REASON_BAD_TOKEN = "CSRF token missing or incorrect."
|
|
|
|
|
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
def _get_failure_view():
|
|
|
|
"""
|
|
|
|
Returns the view to be used for CSRF rejections
|
|
|
|
"""
|
|
|
|
return get_callable(settings.CSRF_FAILURE_VIEW)
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
def _get_new_csrf_key():
|
|
|
|
return md5_constructor("%s%s"
|
|
|
|
% (randrange(0, _MAX_CSRF_KEY), settings.SECRET_KEY)).hexdigest()
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
def _make_legacy_session_token(session_id):
|
|
|
|
return md5_constructor(settings.SECRET_KEY + session_id).hexdigest()
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
def get_token(request):
|
|
|
|
"""
|
2010-09-11 06:56:56 +08:00
|
|
|
Returns the the CSRF token required for a POST form. The token is an
|
|
|
|
alphanumeric value.
|
2009-10-27 08:36:34 +08:00
|
|
|
|
|
|
|
A side effect of calling this function is to make the the csrf_protect
|
|
|
|
decorator and the CsrfViewMiddleware add a CSRF cookie and a 'Vary: Cookie'
|
|
|
|
header to the outgoing response. For this reason, you may need to use this
|
|
|
|
function lazily, as is done by the csrf context processor.
|
|
|
|
"""
|
|
|
|
request.META["CSRF_COOKIE_USED"] = True
|
|
|
|
return request.META.get("CSRF_COOKIE", None)
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
|
2010-09-11 06:56:56 +08:00
|
|
|
def _sanitize_token(token):
|
|
|
|
# Allow only alphanum, and ensure we return a 'str' for the sake of the post
|
|
|
|
# processing middleware.
|
|
|
|
token = re.sub('[^a-zA-Z0-9]', '', str(token.decode('ascii', 'ignore')))
|
|
|
|
if token == "":
|
|
|
|
# In case the cookie has been truncated to nothing at some point.
|
|
|
|
return _get_new_csrf_key()
|
|
|
|
else:
|
|
|
|
return token
|
|
|
|
|
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
class CsrfViewMiddleware(object):
|
|
|
|
"""
|
|
|
|
Middleware that requires a present and correct csrfmiddlewaretoken
|
|
|
|
for POST requests that have a CSRF cookie, and sets an outgoing
|
|
|
|
CSRF cookie.
|
|
|
|
|
|
|
|
This middleware should be used in conjunction with the csrf_token template
|
|
|
|
tag.
|
|
|
|
"""
|
2010-10-28 19:47:15 +08:00
|
|
|
# The _accept and _reject methods currently only exist for the sake of the
|
|
|
|
# requires_csrf_token decorator.
|
|
|
|
def _accept(self, request):
|
|
|
|
# Avoid checking the request twice by adding a custom attribute to
|
|
|
|
# request. This will be relevant when both decorator and middleware
|
|
|
|
# are used.
|
|
|
|
request.csrf_processing_done = True
|
|
|
|
return None
|
|
|
|
|
|
|
|
def _reject(self, request, reason):
|
|
|
|
return _get_failure_view()(request, reason=reason)
|
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
def process_view(self, request, callback, callback_args, callback_kwargs):
|
|
|
|
if getattr(request, 'csrf_processing_done', False):
|
|
|
|
return None
|
|
|
|
|
|
|
|
# If the user doesn't have a CSRF cookie, generate one and store it in the
|
|
|
|
# request, so it's available to the view. We'll store it in a cookie when
|
|
|
|
# we reach the response.
|
|
|
|
try:
|
2010-09-11 06:56:56 +08:00
|
|
|
# In case of cookies from untrusted sources, we strip anything
|
|
|
|
# dangerous at this point, so that the cookie + token will have the
|
|
|
|
# same, sanitized value.
|
|
|
|
request.META["CSRF_COOKIE"] = _sanitize_token(request.COOKIES[settings.CSRF_COOKIE_NAME])
|
2009-10-27 08:36:34 +08:00
|
|
|
cookie_is_new = False
|
|
|
|
except KeyError:
|
2009-10-28 05:31:20 +08:00
|
|
|
# No cookie, so create one. This will be sent with the next
|
|
|
|
# response.
|
2009-10-27 08:36:34 +08:00
|
|
|
request.META["CSRF_COOKIE"] = _get_new_csrf_key()
|
2009-10-28 05:31:20 +08:00
|
|
|
# Set a flag to allow us to fall back and allow the session id in
|
|
|
|
# place of a CSRF cookie for this request only.
|
2009-10-27 08:36:34 +08:00
|
|
|
cookie_is_new = True
|
|
|
|
|
2010-06-08 22:35:48 +08:00
|
|
|
# Wait until request.META["CSRF_COOKIE"] has been manipulated before
|
|
|
|
# bailing out, so that get_token still works
|
|
|
|
if getattr(callback, 'csrf_exempt', False):
|
|
|
|
return None
|
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
if request.method == 'POST':
|
|
|
|
if getattr(request, '_dont_enforce_csrf_checks', False):
|
|
|
|
# Mechanism to turn off CSRF checks for test suite. It comes after
|
|
|
|
# the creation of CSRF cookies, so that everything else continues to
|
|
|
|
# work exactly the same (e.g. cookies are sent etc), but before the
|
|
|
|
# any branches that call reject()
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._accept(request)
|
2009-10-27 08:36:34 +08:00
|
|
|
|
|
|
|
if request.is_ajax():
|
|
|
|
# .is_ajax() is based on the presence of X-Requested-With. In
|
|
|
|
# the context of a browser, this can only be sent if using
|
|
|
|
# XmlHttpRequest. Browsers implement careful policies for
|
|
|
|
# XmlHttpRequest:
|
|
|
|
#
|
|
|
|
# * Normally, only same-domain requests are allowed.
|
|
|
|
#
|
|
|
|
# * Some browsers (e.g. Firefox 3.5 and later) relax this
|
|
|
|
# carefully:
|
|
|
|
#
|
|
|
|
# * if it is a 'simple' GET or POST request (which can
|
|
|
|
# include no custom headers), it is allowed to be cross
|
|
|
|
# domain. These requests will not be recognized as AJAX.
|
|
|
|
#
|
|
|
|
# * if a 'preflight' check with the server confirms that the
|
|
|
|
# server is expecting and allows the request, cross domain
|
|
|
|
# requests even with custom headers are allowed. These
|
|
|
|
# requests will be recognized as AJAX, but can only get
|
|
|
|
# through when the developer has specifically opted in to
|
|
|
|
# allowing the cross-domain POST request.
|
|
|
|
#
|
|
|
|
# So in all cases, it is safe to allow these requests through.
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._accept(request)
|
2009-10-27 08:36:34 +08:00
|
|
|
|
|
|
|
if request.is_secure():
|
2010-07-01 06:30:37 +08:00
|
|
|
# Suppose user visits http://example.com/
|
|
|
|
# An active network attacker,(man-in-the-middle, MITM) sends a
|
|
|
|
# POST form which targets https://example.com/detonate-bomb/ and
|
|
|
|
# submits it via javascript.
|
|
|
|
#
|
|
|
|
# The attacker will need to provide a CSRF cookie and token, but
|
|
|
|
# that is no problem for a MITM and the session independent
|
|
|
|
# nonce we are using. So the MITM can circumvent the CSRF
|
|
|
|
# protection. This is true for any HTTP connection, but anyone
|
|
|
|
# using HTTPS expects better! For this reason, for
|
|
|
|
# https://example.com/ we need additional protection that treats
|
|
|
|
# http://example.com/ as completely untrusted. Under HTTPS,
|
|
|
|
# Barth et al. found that the Referer header is missing for
|
|
|
|
# same-domain requests in only about 0.2% of cases or less, so
|
|
|
|
# we can use strict Referer checking.
|
2009-10-27 08:36:34 +08:00
|
|
|
referer = request.META.get('HTTP_REFERER')
|
|
|
|
if referer is None:
|
2010-10-04 23:12:39 +08:00
|
|
|
logger.warning('Forbidden (%s): %s' % (REASON_NO_COOKIE, request.path),
|
|
|
|
extra={
|
|
|
|
'status_code': 403,
|
|
|
|
'request': request,
|
|
|
|
}
|
|
|
|
)
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._reject(request, REASON_NO_REFERER)
|
2009-10-27 08:36:34 +08:00
|
|
|
|
|
|
|
# The following check ensures that the referer is HTTPS,
|
2010-07-01 06:30:37 +08:00
|
|
|
# the domains match and the ports match - the same origin policy.
|
2009-10-27 08:36:34 +08:00
|
|
|
good_referer = 'https://%s/' % request.get_host()
|
|
|
|
if not referer.startswith(good_referer):
|
2010-10-04 23:12:39 +08:00
|
|
|
reason = REASON_BAD_REFERER % (referer, good_referer)
|
|
|
|
logger.warning('Forbidden (%s): %s' % (reason, request.path),
|
|
|
|
extra={
|
|
|
|
'status_code': 403,
|
|
|
|
'request': request,
|
|
|
|
}
|
|
|
|
)
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._reject(request, reason)
|
2009-10-27 08:36:34 +08:00
|
|
|
|
2009-10-28 05:31:20 +08:00
|
|
|
# If the user didn't already have a CSRF cookie, then fall back to
|
|
|
|
# the Django 1.1 method (hash of session ID), so a request is not
|
|
|
|
# rejected if the form was sent to the user before upgrading to the
|
|
|
|
# Django 1.2 method (session independent nonce)
|
2009-10-27 08:36:34 +08:00
|
|
|
if cookie_is_new:
|
|
|
|
try:
|
|
|
|
session_id = request.COOKIES[settings.SESSION_COOKIE_NAME]
|
|
|
|
csrf_token = _make_legacy_session_token(session_id)
|
|
|
|
except KeyError:
|
|
|
|
# No CSRF cookie and no session cookie. For POST requests,
|
|
|
|
# we insist on a CSRF cookie, and in this way we can avoid
|
|
|
|
# all CSRF attacks, including login CSRF.
|
2010-10-04 23:12:39 +08:00
|
|
|
logger.warning('Forbidden (%s): %s' % (REASON_NO_COOKIE, request.path),
|
|
|
|
extra={
|
|
|
|
'status_code': 403,
|
|
|
|
'request': request,
|
|
|
|
}
|
|
|
|
)
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._reject(request, REASON_NO_COOKIE)
|
2009-10-27 08:36:34 +08:00
|
|
|
else:
|
|
|
|
csrf_token = request.META["CSRF_COOKIE"]
|
|
|
|
|
|
|
|
# check incoming token
|
Fixed #14445 - Use HMAC and constant-time comparison functions where needed.
All adhoc MAC applications have been updated to use HMAC, using SHA1 to
generate unique keys for each application based on the SECRET_KEY, which is
common practice for this situation. In all cases, backwards compatibility
with existing hashes has been maintained, aiming to phase this out as per
the normal deprecation process. In this way, under most normal
circumstances the old hashes will have expired (e.g. by session expiration
etc.) before they become invalid.
In the case of the messages framework and the cookie backend, which was
already using HMAC, there is the possibility of a backwards incompatibility
if the SECRET_KEY is shorter than the default 50 bytes, but the low
likelihood and low impact meant compatibility code was not worth it.
All known instances where tokens/hashes were compared using simple string
equality, which could potentially open timing based attacks, have also been
fixed using a constant-time comparison function.
There are no known practical attacks against the existing implementations,
so these security improvements will not be backported.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-15 04:54:30 +08:00
|
|
|
request_csrf_token = request.POST.get('csrfmiddlewaretoken', '')
|
|
|
|
if not constant_time_compare(request_csrf_token, csrf_token):
|
2009-10-27 22:04:21 +08:00
|
|
|
if cookie_is_new:
|
|
|
|
# probably a problem setting the CSRF cookie
|
2010-10-04 23:12:39 +08:00
|
|
|
logger.warning('Forbidden (%s): %s' % (REASON_NO_CSRF_COOKIE, request.path),
|
|
|
|
extra={
|
|
|
|
'status_code': 403,
|
|
|
|
'request': request,
|
|
|
|
}
|
|
|
|
)
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._reject(request, REASON_NO_CSRF_COOKIE)
|
2009-10-27 22:04:21 +08:00
|
|
|
else:
|
2010-10-04 23:12:39 +08:00
|
|
|
logger.warning('Forbidden (%s): %s' % (REASON_BAD_TOKEN, request.path),
|
|
|
|
extra={
|
|
|
|
'status_code': 403,
|
|
|
|
'request': request,
|
|
|
|
}
|
|
|
|
)
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._reject(request, REASON_BAD_TOKEN)
|
2009-10-27 08:36:34 +08:00
|
|
|
|
2010-10-28 19:47:15 +08:00
|
|
|
return self._accept(request)
|
2009-10-27 08:36:34 +08:00
|
|
|
|
|
|
|
def process_response(self, request, response):
|
|
|
|
if getattr(response, 'csrf_processing_done', False):
|
|
|
|
return response
|
|
|
|
|
|
|
|
# If CSRF_COOKIE is unset, then CsrfViewMiddleware.process_view was
|
|
|
|
# never called, probaby because a request middleware returned a response
|
|
|
|
# (for example, contrib.auth redirecting to a login page).
|
|
|
|
if request.META.get("CSRF_COOKIE") is None:
|
|
|
|
return response
|
|
|
|
|
|
|
|
if not request.META.get("CSRF_COOKIE_USED", False):
|
|
|
|
return response
|
|
|
|
|
|
|
|
# Set the CSRF cookie even if it's already set, so we renew the expiry timer.
|
|
|
|
response.set_cookie(settings.CSRF_COOKIE_NAME,
|
|
|
|
request.META["CSRF_COOKIE"], max_age = 60 * 60 * 24 * 7 * 52,
|
|
|
|
domain=settings.CSRF_COOKIE_DOMAIN)
|
|
|
|
# Content varies with the CSRF cookie, so set the Vary header.
|
|
|
|
patch_vary_headers(response, ('Cookie',))
|
|
|
|
response.csrf_processing_done = True
|
|
|
|
return response
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
class CsrfResponseMiddleware(object):
|
|
|
|
"""
|
|
|
|
DEPRECATED
|
|
|
|
Middleware that post-processes a response to add a csrfmiddlewaretoken.
|
|
|
|
|
|
|
|
This exists for backwards compatibility and as an interim measure until
|
|
|
|
applications are converted to using use the csrf_token template tag
|
|
|
|
instead. It will be removed in Django 1.4.
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
|
|
|
import warnings
|
|
|
|
warnings.warn(
|
|
|
|
"CsrfResponseMiddleware and CsrfMiddleware are deprecated; use CsrfViewMiddleware and the template tag instead (see CSRF documentation).",
|
2010-10-11 20:20:07 +08:00
|
|
|
DeprecationWarning
|
2009-10-27 08:36:34 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
def process_response(self, request, response):
|
|
|
|
if getattr(response, 'csrf_exempt', False):
|
|
|
|
return response
|
|
|
|
|
|
|
|
if response['Content-Type'].split(';')[0] in _HTML_TYPES:
|
|
|
|
csrf_token = get_token(request)
|
|
|
|
# If csrf_token is None, we have no token for this request, which probably
|
|
|
|
# means that this is a response from a request middleware.
|
|
|
|
if csrf_token is None:
|
|
|
|
return response
|
|
|
|
|
|
|
|
# ensure we don't add the 'id' attribute twice (HTML validity)
|
|
|
|
idattributes = itertools.chain(("id='csrfmiddlewaretoken'",),
|
|
|
|
itertools.repeat(''))
|
|
|
|
def add_csrf_field(match):
|
|
|
|
"""Returns the matched <form> tag plus the added <input> element"""
|
|
|
|
return mark_safe(match.group() + "<div style='display:none;'>" + \
|
|
|
|
"<input type='hidden' " + idattributes.next() + \
|
2010-09-11 06:56:56 +08:00
|
|
|
" name='csrfmiddlewaretoken' value='" + csrf_token + \
|
2009-10-27 08:36:34 +08:00
|
|
|
"' /></div>")
|
|
|
|
|
|
|
|
# Modify any POST forms
|
|
|
|
response.content, n = _POST_FORM_RE.subn(add_csrf_field, response.content)
|
|
|
|
if n > 0:
|
|
|
|
# Content varies with the CSRF cookie, so set the Vary header.
|
|
|
|
patch_vary_headers(response, ('Cookie',))
|
|
|
|
|
|
|
|
# Since the content has been modified, any Etag will now be
|
2009-10-28 05:31:20 +08:00
|
|
|
# incorrect. We could recalculate, but only if we assume that
|
2009-10-27 08:36:34 +08:00
|
|
|
# the Etag was set by CommonMiddleware. The safest thing is just
|
|
|
|
# to delete. See bug #9163
|
|
|
|
del response['ETag']
|
|
|
|
return response
|
|
|
|
|
2010-09-04 00:28:10 +08:00
|
|
|
|
2009-10-27 08:36:34 +08:00
|
|
|
class CsrfMiddleware(object):
|
|
|
|
"""
|
|
|
|
Django middleware that adds protection against Cross Site
|
|
|
|
Request Forgeries by adding hidden form fields to POST forms and
|
|
|
|
checking requests for the correct value.
|
|
|
|
|
|
|
|
CsrfMiddleware uses two middleware, CsrfViewMiddleware and
|
|
|
|
CsrfResponseMiddleware, which can be used independently. It is recommended
|
|
|
|
to use only CsrfViewMiddleware and use the csrf_token template tag in
|
|
|
|
templates for inserting the token.
|
|
|
|
"""
|
|
|
|
# We can't just inherit from CsrfViewMiddleware and CsrfResponseMiddleware
|
|
|
|
# because both have process_response methods.
|
|
|
|
def __init__(self):
|
|
|
|
self.response_middleware = CsrfResponseMiddleware()
|
|
|
|
self.view_middleware = CsrfViewMiddleware()
|
|
|
|
|
|
|
|
def process_response(self, request, resp):
|
|
|
|
# We must do the response post-processing first, because that calls
|
|
|
|
# get_token(), which triggers a flag saying that the CSRF cookie needs
|
|
|
|
# to be sent (done in CsrfViewMiddleware.process_response)
|
|
|
|
resp2 = self.response_middleware.process_response(request, resp)
|
|
|
|
return self.view_middleware.process_response(request, resp2)
|
|
|
|
|
|
|
|
def process_view(self, request, callback, callback_args, callback_kwargs):
|
|
|
|
return self.view_middleware.process_view(request, callback, callback_args,
|
|
|
|
callback_kwargs)
|