2008-08-24 06:25:40 +08:00
|
|
|
.. _ref-contrib-csrf:
|
|
|
|
|
2006-05-09 07:03:08 +08:00
|
|
|
=====================================
|
2006-12-18 11:59:45 +08:00
|
|
|
Cross Site Request Forgery protection
|
2006-05-09 07:03:08 +08:00
|
|
|
=====================================
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. module:: django.contrib.csrf
|
|
|
|
:synopsis: Protects against Cross Site Request Forgeries
|
|
|
|
|
2006-12-18 11:59:45 +08:00
|
|
|
The CsrfMiddleware class provides easy-to-use protection against
|
|
|
|
`Cross Site Request Forgeries`_. This type of attack occurs when a malicious
|
2008-07-22 11:01:21 +08:00
|
|
|
Web site creates a link or form button that is intended to perform some action
|
|
|
|
on your Web site, using the credentials of a logged-in user who is tricked
|
2006-05-09 07:03:08 +08:00
|
|
|
into clicking on the link in their browser.
|
|
|
|
|
|
|
|
The first defense against CSRF attacks is to ensure that GET requests
|
|
|
|
are side-effect free. POST requests can then be protected by adding this
|
|
|
|
middleware into your list of installed middleware.
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. _Cross Site Request Forgeries: http://www.squarefree.com/securitytips/web-developers.html#CSRF
|
2006-05-09 07:03:08 +08:00
|
|
|
|
|
|
|
How to use it
|
|
|
|
=============
|
2006-12-18 11:59:45 +08:00
|
|
|
|
|
|
|
Add the middleware ``'django.contrib.csrf.middleware.CsrfMiddleware'`` to
|
2008-08-24 06:25:40 +08:00
|
|
|
your list of middleware classes, :setting:`MIDDLEWARE_CLASSES`. It needs to process
|
2006-05-09 07:03:08 +08:00
|
|
|
the response after the SessionMiddleware, so must come before it in the
|
|
|
|
list. It also must process the response before things like compression
|
2008-12-03 08:34:18 +08:00
|
|
|
happen to the response, so it must come after GZipMiddleware in the
|
|
|
|
list.
|
|
|
|
|
|
|
|
Exceptions
|
|
|
|
----------
|
|
|
|
|
|
|
|
To manually exclude a view function from being handled by the
|
|
|
|
CsrfMiddleware, you can use the ``csrf_exempt`` decorator (found in
|
|
|
|
the ``django.contrib.csrf.middleware`` module).
|
|
|
|
|
|
|
|
AJAX requests sent with "X-Requested-With: XMLHttpRequest" are
|
|
|
|
automatically exempt (see below).
|
2006-05-09 07:03:08 +08:00
|
|
|
|
|
|
|
How it works
|
|
|
|
============
|
2006-12-18 11:59:45 +08:00
|
|
|
|
2006-05-09 07:03:08 +08:00
|
|
|
CsrfMiddleware does two things:
|
|
|
|
|
2006-12-18 11:59:45 +08:00
|
|
|
1. It modifies outgoing requests by adding a hidden form field to all
|
|
|
|
'POST' forms, with the name 'csrfmiddlewaretoken' and a value which is
|
|
|
|
a hash of the session ID plus a secret. If there is no session ID set,
|
|
|
|
this modification of the response isn't done, so there is very little
|
2006-05-09 07:03:08 +08:00
|
|
|
performance penalty for those requests that don't have a session.
|
|
|
|
|
2006-12-18 11:59:45 +08:00
|
|
|
2. On all incoming POST requests that have the session cookie set, it
|
|
|
|
checks that the 'csrfmiddlewaretoken' is present and correct. If it
|
2006-05-09 07:03:08 +08:00
|
|
|
isn't, the user will get a 403 error.
|
|
|
|
|
2008-07-22 11:01:21 +08:00
|
|
|
This ensures that only forms that have originated from your Web site
|
2006-05-09 07:03:08 +08:00
|
|
|
can be used to POST data back.
|
|
|
|
|
2007-08-16 22:09:41 +08:00
|
|
|
It deliberately only targets HTTP POST requests (and the corresponding POST
|
|
|
|
forms). GET requests ought never to have any potentially dangerous side
|
|
|
|
effects (see `9.1.1 Safe Methods, HTTP 1.1, RFC 2616`_), and so a
|
|
|
|
CSRF attack with a GET request ought to be harmless.
|
2006-05-09 07:03:08 +08:00
|
|
|
|
|
|
|
POST requests that are not accompanied by a session cookie are not protected,
|
2008-07-22 11:01:21 +08:00
|
|
|
but they do not need to be protected, since the 'attacking' Web site
|
2006-05-09 07:03:08 +08:00
|
|
|
could make these kind of requests anyway.
|
|
|
|
|
2006-12-18 11:59:45 +08:00
|
|
|
The Content-Type is checked before modifying the response, and only
|
2006-05-09 07:03:08 +08:00
|
|
|
pages that are served as 'text/html' or 'application/xml+xhtml'
|
|
|
|
are modified.
|
|
|
|
|
2008-12-03 08:34:18 +08:00
|
|
|
AJAX requests sent with "X-Requested-With: XMLHttpRequest", as done by
|
|
|
|
many AJAX toolkits, are detected and automatically excepted from this
|
|
|
|
mechanism. This is because in the context of a browser, this header
|
|
|
|
can only be added by using XMLHttpRequest, and browsers already
|
|
|
|
implement a same-domain policy for XMLHttpRequest. This is not secure
|
|
|
|
if you do not trust content within the same domain or sub-domains.
|
|
|
|
|
|
|
|
The above two functions of ``CsrfMiddleware`` are split between two
|
|
|
|
classes: ``CsrfResponseMiddleware`` and ``CsrfViewMiddleware``
|
|
|
|
respectively. This allows the individual components to be used and/or
|
|
|
|
replaced instead of using ``CsrfMiddleware``.
|
|
|
|
|
2007-08-16 22:09:41 +08:00
|
|
|
.. _9.1.1 Safe Methods, HTTP 1.1, RFC 2616: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
|
|
|
|
|
2006-05-09 07:03:08 +08:00
|
|
|
Limitations
|
|
|
|
===========
|
2006-12-18 11:59:45 +08:00
|
|
|
|
2006-05-09 07:03:08 +08:00
|
|
|
CsrfMiddleware requires Django's session framework to work. If you have
|
|
|
|
a custom authentication system that manually sets cookies and the like,
|
|
|
|
it won't help you.
|
|
|
|
|
2006-12-18 11:59:45 +08:00
|
|
|
If your app creates HTML pages and forms in some unusual way, (e.g.
|
2008-07-28 02:34:21 +08:00
|
|
|
it sends fragments of HTML in JavaScript document.write statements)
|
2006-12-18 11:59:45 +08:00
|
|
|
you might bypass the filter that adds the hidden field to the form,
|
2006-05-09 07:03:08 +08:00
|
|
|
in which case form submission will always fail. It may still be possible
|
|
|
|
to use the middleware, provided you can find some way to get the
|
2008-12-03 08:34:18 +08:00
|
|
|
CSRF token and ensure that is included when your form is submitted.
|