summaryrefslogtreecommitdiff
path: root/tests/regressiontests/csrf_tests/tests.py
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2010-09-09 00:36:08 +0000
committerJames Bennett <ubernostrum@gmail.com>2010-09-09 00:36:08 +0000
commit7f84657b6b2243cc787bdb9f296710c8d13ad0bd (patch)
tree913a4ae403c7fd503d296703b2440f37869cd07f /tests/regressiontests/csrf_tests/tests.py
parenta04398eb1b958830698fe42bd9f5244662e7d8b3 (diff)
[1.2.X] Patch CSRF-protection system to deal with reported security issue. Announcement and details to follow. Backport of [13698] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13699 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/csrf_tests/tests.py')
-rw-r--r--tests/regressiontests/csrf_tests/tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/regressiontests/csrf_tests/tests.py b/tests/regressiontests/csrf_tests/tests.py
index f383978266..fadecf565e 100644
--- a/tests/regressiontests/csrf_tests/tests.py
+++ b/tests/regressiontests/csrf_tests/tests.py
@@ -6,6 +6,7 @@ from django.middleware.csrf import CsrfMiddleware, CsrfViewMiddleware
from django.views.decorators.csrf import csrf_exempt, csrf_view_exempt
from django.core.context_processors import csrf
from django.contrib.sessions.middleware import SessionMiddleware
+from django.utils.html import escape
from django.utils.importlib import import_module
from django.conf import settings
from django.template import RequestContext, Template
@@ -56,7 +57,9 @@ class TestingHttpRequest(HttpRequest):
return getattr(self, '_is_secure', False)
class CsrfMiddlewareTest(TestCase):
- _csrf_id = "1"
+ # The csrf token is potentially from an untrusted source, so could have
+ # characters that need escaping
+ _csrf_id = "<1>"
# This is a valid session token for this ID and secret key. This was generated using
# the old code that we're to be backwards-compatible with. Don't use the CSRF code
@@ -101,7 +104,7 @@ class CsrfMiddlewareTest(TestCase):
return req
def _check_token_present(self, response, csrf_id=None):
- self.assertContains(response, "name='csrfmiddlewaretoken' value='%s'" % (csrf_id or self._csrf_id))
+ self.assertContains(response, "name='csrfmiddlewaretoken' value='%s'" % escape(csrf_id or self._csrf_id))
# Check the post processing and outgoing cookie
def test_process_response_no_csrf_cookie(self):