Fixed #32795 -- Changed CsrfViewMiddleware to fail earlier on badly formatted tokens.

This commit is contained in:
Chris Jerdonek 2021-05-29 04:49:53 -07:00 committed by Mariusz Felisiak
parent ffdee8d264
commit 55775891fb
2 changed files with 43 additions and 18 deletions

View File

@ -28,9 +28,15 @@ REASON_BAD_ORIGIN = "Origin checking failed - %s does not match any trusted orig
REASON_NO_REFERER = "Referer checking failed - no Referer." REASON_NO_REFERER = "Referer checking failed - no Referer."
REASON_BAD_REFERER = "Referer checking failed - %s does not match any trusted origins." REASON_BAD_REFERER = "Referer checking failed - %s does not match any trusted origins."
REASON_NO_CSRF_COOKIE = "CSRF cookie not set." REASON_NO_CSRF_COOKIE = "CSRF cookie not set."
REASON_BAD_TOKEN = "CSRF token missing or incorrect." REASON_CSRF_TOKEN_INCORRECT = 'CSRF token incorrect.'
REASON_CSRF_TOKEN_MISSING = 'CSRF token missing.'
REASON_MALFORMED_REFERER = "Referer checking failed - Referer is malformed." REASON_MALFORMED_REFERER = "Referer checking failed - Referer is malformed."
REASON_INSECURE_REFERER = "Referer checking failed - Referer is insecure while host is secure." REASON_INSECURE_REFERER = "Referer checking failed - Referer is insecure while host is secure."
# The reason strings below are for passing to InvalidTokenFormat. They are
# phrases without a subject because they can be in reference to either the CSRF
# cookie or non-cookie token.
REASON_INCORRECT_LENGTH = 'has incorrect length'
REASON_INVALID_CHARACTERS = 'has invalid characters'
CSRF_SECRET_LENGTH = 32 CSRF_SECRET_LENGTH = 32
CSRF_TOKEN_LENGTH = 2 * CSRF_SECRET_LENGTH CSRF_TOKEN_LENGTH = 2 * CSRF_SECRET_LENGTH
@ -107,13 +113,18 @@ def rotate_token(request):
request.csrf_cookie_needs_reset = True request.csrf_cookie_needs_reset = True
class InvalidTokenFormat(Exception):
def __init__(self, reason):
self.reason = reason
def _sanitize_token(token): def _sanitize_token(token):
if len(token) not in (CSRF_TOKEN_LENGTH, CSRF_SECRET_LENGTH):
raise InvalidTokenFormat(REASON_INCORRECT_LENGTH)
# Make sure all characters are in CSRF_ALLOWED_CHARS. # Make sure all characters are in CSRF_ALLOWED_CHARS.
if invalid_token_chars_re.search(token): if invalid_token_chars_re.search(token):
return _get_new_csrf_token() raise InvalidTokenFormat(REASON_INVALID_CHARACTERS)
elif len(token) == CSRF_TOKEN_LENGTH: if len(token) == CSRF_SECRET_LENGTH:
return token
elif len(token) == CSRF_SECRET_LENGTH:
# Older Django versions set cookies to values of CSRF_SECRET_LENGTH # Older Django versions set cookies to values of CSRF_SECRET_LENGTH
# alphanumeric characters. For backwards compatibility, accept # alphanumeric characters. For backwards compatibility, accept
# such values as unmasked secrets. # such values as unmasked secrets.
@ -121,7 +132,7 @@ def _sanitize_token(token):
# different code paths in the checks, although that might be a tad more # different code paths in the checks, although that might be a tad more
# efficient. # efficient.
return _mask_cipher_secret(token) return _mask_cipher_secret(token)
return _get_new_csrf_token() return token
def _compare_masked_tokens(request_csrf_token, csrf_token): def _compare_masked_tokens(request_csrf_token, csrf_token):
@ -206,7 +217,11 @@ class CsrfViewMiddleware(MiddlewareMixin):
except KeyError: except KeyError:
return None return None
try:
csrf_token = _sanitize_token(cookie_token) csrf_token = _sanitize_token(cookie_token)
except InvalidTokenFormat:
csrf_token = _get_new_csrf_token()
if csrf_token != cookie_token: if csrf_token != cookie_token:
# Cookie token needed to be replaced; # Cookie token needed to be replaced;
# the cookie needs to be reset. # the cookie needs to be reset.
@ -381,11 +396,18 @@ class CsrfViewMiddleware(MiddlewareMixin):
if request_csrf_token == '': if request_csrf_token == '':
# Fall back to X-CSRFToken, to make things easier for AJAX, and # Fall back to X-CSRFToken, to make things easier for AJAX, and
# possible for PUT/DELETE. # possible for PUT/DELETE.
request_csrf_token = request.META.get(settings.CSRF_HEADER_NAME, '') try:
request_csrf_token = request.META[settings.CSRF_HEADER_NAME]
except KeyError:
return self._reject(request, REASON_CSRF_TOKEN_MISSING)
try:
request_csrf_token = _sanitize_token(request_csrf_token) request_csrf_token = _sanitize_token(request_csrf_token)
except InvalidTokenFormat as exc:
return self._reject(request, f'CSRF token {exc.reason}.')
if not _compare_masked_tokens(request_csrf_token, csrf_token): if not _compare_masked_tokens(request_csrf_token, csrf_token):
return self._reject(request, REASON_BAD_TOKEN) return self._reject(request, REASON_CSRF_TOKEN_INCORRECT)
return self._accept(request) return self._accept(request)

View File

@ -5,9 +5,9 @@ from django.contrib.sessions.backends.cache import SessionStore
from django.core.exceptions import ImproperlyConfigured from django.core.exceptions import ImproperlyConfigured
from django.http import HttpRequest, HttpResponse from django.http import HttpRequest, HttpResponse
from django.middleware.csrf import ( from django.middleware.csrf import (
CSRF_SESSION_KEY, CSRF_TOKEN_LENGTH, REASON_BAD_ORIGIN, REASON_BAD_TOKEN, CSRF_SESSION_KEY, CSRF_TOKEN_LENGTH, REASON_BAD_ORIGIN,
REASON_NO_CSRF_COOKIE, CsrfViewMiddleware, RejectRequest, REASON_CSRF_TOKEN_MISSING, REASON_NO_CSRF_COOKIE, CsrfViewMiddleware,
_compare_masked_tokens as equivalent_tokens, get_token, RejectRequest, _compare_masked_tokens as equivalent_tokens, get_token,
) )
from django.test import SimpleTestCase, override_settings from django.test import SimpleTestCase, override_settings
from django.views.decorators.csrf import csrf_exempt, requires_csrf_token from django.views.decorators.csrf import csrf_exempt, requires_csrf_token
@ -125,28 +125,28 @@ class CsrfViewMiddlewareTestMixin:
If a CSRF cookie is present but with no token, the middleware rejects If a CSRF cookie is present but with no token, the middleware rejects
the incoming request. the incoming request.
""" """
self._check_bad_or_missing_token(None, REASON_BAD_TOKEN) self._check_bad_or_missing_token(None, REASON_CSRF_TOKEN_MISSING)
def test_csrf_cookie_bad_token_characters(self): def test_csrf_cookie_bad_token_characters(self):
""" """
If a CSRF cookie is present but the token has invalid characters, the If a CSRF cookie is present but the token has invalid characters, the
middleware rejects the incoming request. middleware rejects the incoming request.
""" """
self._check_bad_or_missing_token(64 * '*', REASON_BAD_TOKEN) self._check_bad_or_missing_token(64 * '*', 'CSRF token has invalid characters.')
def test_csrf_cookie_bad_token_length(self): def test_csrf_cookie_bad_token_length(self):
""" """
If a CSRF cookie is present but the token has an incorrect length, the If a CSRF cookie is present but the token has an incorrect length, the
middleware rejects the incoming request. middleware rejects the incoming request.
""" """
self._check_bad_or_missing_token(16 * 'a', REASON_BAD_TOKEN) self._check_bad_or_missing_token(16 * 'a', 'CSRF token has incorrect length.')
def test_csrf_cookie_incorrect_token(self): def test_csrf_cookie_incorrect_token(self):
""" """
If a CSRF cookie is present but the correctly formatted token is If a CSRF cookie is present but the correctly formatted token is
incorrect, the middleware rejects the incoming request. incorrect, the middleware rejects the incoming request.
""" """
self._check_bad_or_missing_token(64 * 'a', REASON_BAD_TOKEN) self._check_bad_or_missing_token(64 * 'a', 'CSRF token incorrect.')
def test_process_request_csrf_cookie_and_token(self): def test_process_request_csrf_cookie_and_token(self):
""" """
@ -601,7 +601,10 @@ class CsrfViewMiddlewareTestMixin:
with self.assertLogs('django.security.csrf', 'WARNING') as cm: with self.assertLogs('django.security.csrf', 'WARNING') as cm:
resp = mw.process_view(req, post_form_view, (), {}) resp = mw.process_view(req, post_form_view, (), {})
self.assertEqual(resp.status_code, 403) self.assertEqual(resp.status_code, 403)
self.assertEqual(cm.records[0].getMessage(), 'Forbidden (%s): ' % REASON_BAD_TOKEN) self.assertEqual(
cm.records[0].getMessage(),
'Forbidden (%s): ' % REASON_CSRF_TOKEN_MISSING,
)
@override_settings(ALLOWED_HOSTS=['www.example.com']) @override_settings(ALLOWED_HOSTS=['www.example.com'])
def test_bad_origin_bad_domain(self): def test_bad_origin_bad_domain(self):