Skip to content

Commit

Permalink
Slight change to CSRF error messages to make debugging easier.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11669 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
spookylukey committed Oct 27, 2009
1 parent b32a187 commit d0b900e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions django/middleware/csrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,18 @@ def accept():
# 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.
return reject("No CSRF cookie.")
return reject("No CSRF or session cookie.")
else:
csrf_token = request.META["CSRF_COOKIE"]

# check incoming token
request_csrf_token = request.POST.get('csrfmiddlewaretoken', None)
if request_csrf_token != csrf_token:
return reject("CSRF token missing or incorrect.")
if cookie_is_new:
# probably a problem setting the CSRF cookie
return reject("CSRF cookie not set.")
else:
return reject("CSRF token missing or incorrect.")

return accept()

Expand Down

0 comments on commit d0b900e

Please sign in to comment.