Ticket #14235: 14235.2.diff
File 14235.2.diff, 5.7 KB (added by , 14 years ago) |
---|
-
django/template/defaulttags.py
9 9 from django.template import get_library, Library, InvalidTemplateLibrary 10 10 from django.template.smartif import IfParser, Literal 11 11 from django.conf import settings 12 from django.utils.html import escape13 12 from django.utils.encoding import smart_str, smart_unicode 14 13 from django.utils.safestring import mark_safe 15 14 … … 43 42 if csrf_token == 'NOTPROVIDED': 44 43 return mark_safe(u"") 45 44 else: 46 return mark_safe(u"<div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='%s' /></div>" % escape(csrf_token))45 return mark_safe(u"<div style='display:none'><input type='hidden' name='csrfmiddlewaretoken' value='%s' /></div>" % csrf_token) 47 46 else: 48 47 # It's very probable that the token is missing because of 49 48 # misconfiguration, so we raise a warning -
django/middleware/csrf.py
13 13 from django.core.urlresolvers import get_callable 14 14 from django.utils.cache import patch_vary_headers 15 15 from django.utils.hashcompat import md5_constructor 16 from django.utils.html import escape17 16 from django.utils.safestring import mark_safe 18 17 19 18 _POST_FORM_RE = \ … … 53 52 54 53 def get_token(request): 55 54 """ 56 Returns the the CSRF token required for a POST form. No assumptions should57 be made about what characters might be in the CSRF token.55 Returns the the CSRF token required for a POST form. The token is an 56 alphanumeric value. 58 57 59 58 A side effect of calling this function is to make the the csrf_protect 60 59 decorator and the CsrfViewMiddleware add a CSRF cookie and a 'Vary: Cookie' … … 65 64 return request.META.get("CSRF_COOKIE", None) 66 65 67 66 67 def _sanitize_token(token): 68 # Allow only alphanum, and ensure we return a 'str' for the sake of the post 69 # processing middleware. 70 return re.sub('[^a-zA-Z0-9]', '', str(token.decode('ascii', 'ignore'))) 71 72 68 73 class CsrfViewMiddleware(object): 69 74 """ 70 75 Middleware that requires a present and correct csrfmiddlewaretoken … … 90 95 # request, so it's available to the view. We'll store it in a cookie when 91 96 # we reach the response. 92 97 try: 93 request.META["CSRF_COOKIE"] = request.COOKIES[settings.CSRF_COOKIE_NAME] 98 # In case of cookies from untrusted sources, we strip anything 99 # dangerous at this point, so that the cookie + token will have the 100 # same, sanitized value. 101 request.META["CSRF_COOKIE"] = _sanitize_token(request.COOKIES[settings.CSRF_COOKIE_NAME]) 94 102 cookie_is_new = False 95 103 except KeyError: 96 104 # No cookie, so create one. This will be sent with the next … … 249 257 """Returns the matched <form> tag plus the added <input> element""" 250 258 return mark_safe(match.group() + "<div style='display:none;'>" + \ 251 259 "<input type='hidden' " + idattributes.next() + \ 252 " name='csrfmiddlewaretoken' value='" + escape(csrf_token)+ \260 " name='csrfmiddlewaretoken' value='" + csrf_token + \ 253 261 "' /></div>") 254 262 255 263 # Modify any POST forms -
tests/regressiontests/csrf_tests/tests.py
6 6 from django.views.decorators.csrf import csrf_exempt, csrf_view_exempt 7 7 from django.core.context_processors import csrf 8 8 from django.contrib.sessions.middleware import SessionMiddleware 9 from django.utils.html import escape10 9 from django.utils.importlib import import_module 11 10 from django.conf import settings 12 11 from django.template import RequestContext, Template 13 12 14 13 # Response/views used for CsrfResponseMiddleware and CsrfViewMiddleware tests 15 14 def post_form_response(): 16 resp = HttpResponse(content= """17 <html><body>< form method="post"><input type="text" /></form></body></html>15 resp = HttpResponse(content=u""" 16 <html><body><h1>\u00a1Unicode!<form method="post"><input type="text" /></form></body></html> 18 17 """, mimetype="text/html") 19 18 return resp 20 19 … … 58 57 59 58 class CsrfMiddlewareTest(TestCase): 60 59 # The csrf token is potentially from an untrusted source, so could have 61 # characters that need escaping 62 _csrf_id = "<1>" 60 # characters that need dealing with. 61 _csrf_id_cookie = "<1>\xc2\xa1" 62 _csrf_id = "1" 63 63 64 64 # This is a valid session token for this ID and secret key. This was generated using 65 65 # the old code that we're to be backwards-compatible with. Don't use the CSRF code … … 74 74 75 75 def _get_GET_csrf_cookie_request(self): 76 76 req = TestingHttpRequest() 77 req.COOKIES[settings.CSRF_COOKIE_NAME] = self._csrf_id 77 req.COOKIES[settings.CSRF_COOKIE_NAME] = self._csrf_id_cookie 78 78 return req 79 79 80 80 def _get_POST_csrf_cookie_request(self): … … 104 104 return req 105 105 106 106 def _check_token_present(self, response, csrf_id=None): 107 self.assertContains(response, "name='csrfmiddlewaretoken' value='%s'" % escape(csrf_id or self._csrf_id))107 self.assertContains(response, "name='csrfmiddlewaretoken' value='%s'" % (csrf_id or self._csrf_id)) 108 108 109 109 # Check the post processing and outgoing cookie 110 110 def test_process_response_no_csrf_cookie(self):