2006-05-08 23:03:08 +00:00
|
|
|
=====================================
|
2006-12-18 03:59:45 +00:00
|
|
|
Cross Site Request Forgery protection
|
2006-05-08 23:03:08 +00:00
|
|
|
=====================================
|
|
|
|
|
2009-10-27 00:36:34 +00:00
|
|
|
.. module:: django.middleware.csrf
|
2008-08-23 22:25:40 +00:00
|
|
|
:synopsis: Protects against Cross Site Request Forgeries
|
|
|
|
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
The CSRF middleware and template tag provides easy-to-use protection against
|
2022-03-14 06:46:01 +00:00
|
|
|
`Cross Site Request Forgeries`_. This type of attack occurs when a malicious
|
2015-11-15 12:05:15 +00:00
|
|
|
website contains a link, a form button or some JavaScript that is intended to
|
|
|
|
perform some action on your website, using the credentials of a logged-in user
|
2022-03-14 06:46:01 +00:00
|
|
|
who visits the malicious site in their browser. A related type of attack,
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
'login CSRF', where an attacking site tricks a user's browser into logging into
|
|
|
|
a site with someone else's credentials, is also covered.
|
2006-05-08 23:03:08 +00:00
|
|
|
|
2011-05-09 23:45:54 +00:00
|
|
|
The first defense against CSRF attacks is to ensure that GET requests (and other
|
2022-11-04 12:33:09 +00:00
|
|
|
'safe' methods, as defined by :rfc:`9110#section-9.2.1`) are side effect free.
|
2016-05-02 12:35:05 +00:00
|
|
|
Requests via 'unsafe' methods, such as POST, PUT, and DELETE, can then be
|
2022-03-16 01:19:48 +00:00
|
|
|
protected by the steps outlined in :ref:`using-csrf`.
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
|
2023-11-23 04:27:30 +00:00
|
|
|
.. _Cross Site Request Forgeries: https://owasp.org/www-community/attacks/csrf#overview
|
2006-05-08 23:03:08 +00:00
|
|
|
|
2011-06-10 15:14:36 +00:00
|
|
|
.. _how-csrf-works:
|
|
|
|
|
2006-05-08 23:03:08 +00:00
|
|
|
How it works
|
|
|
|
============
|
2006-12-18 03:59:45 +00:00
|
|
|
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
The CSRF protection is based on the following things:
|
|
|
|
|
2021-08-17 13:13:13 +00:00
|
|
|
#. A CSRF cookie that is a random secret value, which other sites will not have
|
|
|
|
access to.
|
2006-05-08 23:03:08 +00:00
|
|
|
|
2021-08-17 13:13:13 +00:00
|
|
|
``CsrfViewMiddleware`` sends this cookie with the response whenever
|
|
|
|
``django.middleware.csrf.get_token()`` is called. It can also send it in
|
|
|
|
other cases. For security reasons, the value of the secret is changed each
|
|
|
|
time a user logs in.
|
2006-05-08 23:03:08 +00:00
|
|
|
|
2021-08-17 13:13:13 +00:00
|
|
|
#. A hidden form field with the name 'csrfmiddlewaretoken', present in all
|
|
|
|
outgoing POST forms.
|
Fixed #20869 -- made CSRF tokens change every request by salt-encrypting them
Note that the cookie is not changed every request, just the token retrieved
by the `get_token()` method (used also by the `{% csrf_token %}` tag).
While at it, made token validation strict: Where, before, any length was
accepted and non-ASCII chars were ignored, we now treat anything other than
`[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for
backwards-compatibility, are accepted and replaced by 64-char ones).
Thanks Trac user patrys for reporting, github user adambrenecki
for initial patch, Tim Graham for help, and Curtis Maloney,
Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne
for reviews.
2015-11-07 16:35:45 +00:00
|
|
|
|
2021-08-17 13:13:13 +00:00
|
|
|
In order to protect against `BREACH`_ attacks, the value of this field is
|
|
|
|
not simply the secret. It is scrambled differently with each response using
|
|
|
|
a mask. The mask is generated randomly on every call to ``get_token()``, so
|
|
|
|
the form field value is different each time.
|
2006-05-08 23:03:08 +00:00
|
|
|
|
2024-04-26 12:20:36 +00:00
|
|
|
This part is done by the :ttag:`csrf_token` template tag.
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
|
2018-11-15 18:54:28 +00:00
|
|
|
#. For all incoming requests that are not using HTTP GET, HEAD, OPTIONS or
|
2011-05-09 23:45:54 +00:00
|
|
|
TRACE, a CSRF cookie must be present, and the 'csrfmiddlewaretoken' field
|
|
|
|
must be present and correct. If it isn't, the user will get a 403 error.
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
|
Fixed #20869 -- made CSRF tokens change every request by salt-encrypting them
Note that the cookie is not changed every request, just the token retrieved
by the `get_token()` method (used also by the `{% csrf_token %}` tag).
While at it, made token validation strict: Where, before, any length was
accepted and non-ASCII chars were ignored, we now treat anything other than
`[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for
backwards-compatibility, are accepted and replaced by 64-char ones).
Thanks Trac user patrys for reporting, github user adambrenecki
for initial patch, Tim Graham for help, and Curtis Maloney,
Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne
for reviews.
2015-11-07 16:35:45 +00:00
|
|
|
When validating the 'csrfmiddlewaretoken' field value, only the secret,
|
|
|
|
not the full token, is compared with the secret in the cookie value.
|
|
|
|
This allows the use of ever-changing tokens. While each request may use its
|
|
|
|
own token, the secret remains common to all.
|
|
|
|
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
This check is done by ``CsrfViewMiddleware``.
|
|
|
|
|
2021-01-02 23:46:17 +00:00
|
|
|
#. ``CsrfViewMiddleware`` verifies the `Origin header`_, if provided by the
|
|
|
|
browser, against the current host and the :setting:`CSRF_TRUSTED_ORIGINS`
|
|
|
|
setting. This provides protection against cross-subdomain attacks.
|
|
|
|
|
|
|
|
#. In addition, for HTTPS requests, if the ``Origin`` header isn't provided,
|
|
|
|
``CsrfViewMiddleware`` performs strict referer checking. This means that
|
|
|
|
even if a subdomain can set or modify cookies on your domain, it can't force
|
|
|
|
a user to post to your application since that request won't come from your
|
|
|
|
own exact domain.
|
2016-02-03 18:29:45 +00:00
|
|
|
|
|
|
|
This also addresses a man-in-the-middle attack that's possible under HTTPS
|
Fixed #20869 -- made CSRF tokens change every request by salt-encrypting them
Note that the cookie is not changed every request, just the token retrieved
by the `get_token()` method (used also by the `{% csrf_token %}` tag).
While at it, made token validation strict: Where, before, any length was
accepted and non-ASCII chars were ignored, we now treat anything other than
`[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for
backwards-compatibility, are accepted and replaced by 64-char ones).
Thanks Trac user patrys for reporting, github user adambrenecki
for initial patch, Tim Graham for help, and Curtis Maloney,
Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne
for reviews.
2015-11-07 16:35:45 +00:00
|
|
|
when using a session independent secret, due to the fact that HTTP
|
2016-02-03 18:29:45 +00:00
|
|
|
``Set-Cookie`` headers are (unfortunately) accepted by clients even when
|
|
|
|
they are talking to a site under HTTPS. (Referer checking is not done for
|
|
|
|
HTTP requests because the presence of the ``Referer`` header isn't reliable
|
|
|
|
enough under HTTP.)
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
|
2015-03-17 09:52:55 +00:00
|
|
|
If the :setting:`CSRF_COOKIE_DOMAIN` setting is set, the referer is compared
|
2020-10-06 08:12:04 +00:00
|
|
|
against it. You can allow cross-subdomain requests by including a leading
|
|
|
|
dot. For example, ``CSRF_COOKIE_DOMAIN = '.example.com'`` will allow POST
|
|
|
|
requests from ``www.example.com`` and ``api.example.com``. If the setting is
|
|
|
|
not set, then the referer must match the HTTP ``Host`` header.
|
2015-03-17 09:52:55 +00:00
|
|
|
|
|
|
|
Expanding the accepted referers beyond the current host or cookie domain can
|
|
|
|
be done with the :setting:`CSRF_TRUSTED_ORIGINS` setting.
|
|
|
|
|
|
|
|
This ensures that only forms that have originated from trusted domains can be
|
|
|
|
used to POST data back.
|
2006-05-08 23:03:08 +00:00
|
|
|
|
2011-05-09 23:45:54 +00:00
|
|
|
It deliberately ignores GET requests (and other requests that are defined as
|
2022-11-04 12:33:09 +00:00
|
|
|
'safe' by :rfc:`9110#section-9.2.1`). These requests ought never to have any
|
2019-11-23 12:42:57 +00:00
|
|
|
potentially dangerous side effects, and so a CSRF attack with a GET request
|
2022-11-04 12:33:09 +00:00
|
|
|
ought to be harmless. :rfc:`9110#section-9.2.1` defines POST, PUT, and DELETE
|
2019-11-23 12:42:57 +00:00
|
|
|
as 'unsafe', and all other methods are also assumed to be unsafe, for maximum
|
|
|
|
protection.
|
2016-02-03 18:29:45 +00:00
|
|
|
|
|
|
|
The CSRF protection cannot protect against man-in-the-middle attacks, so use
|
|
|
|
:ref:`HTTPS <security-recommendation-ssl>` with
|
|
|
|
:ref:`http-strict-transport-security`. It also assumes :ref:`validation of
|
|
|
|
the HOST header <host-headers-virtual-hosting>` and that there aren't any
|
|
|
|
:ref:`cross-site scripting vulnerabilities <cross-site-scripting>` on your site
|
|
|
|
(because XSS vulnerabilities already let an attacker do anything a CSRF
|
|
|
|
vulnerability allows and much worse).
|
2007-08-16 14:09:41 +00:00
|
|
|
|
2017-05-24 23:36:45 +00:00
|
|
|
.. admonition:: Removing the ``Referer`` header
|
|
|
|
|
|
|
|
To avoid disclosing the referrer URL to third-party sites, you might want
|
|
|
|
to `disable the referer`_ on your site's ``<a>`` tags. For example, you
|
|
|
|
might use the ``<meta name="referrer" content="no-referrer">`` tag or
|
|
|
|
include the ``Referrer-Policy: no-referrer`` header. Due to the CSRF
|
|
|
|
protection's strict referer checking on HTTPS requests, those techniques
|
|
|
|
cause a CSRF failure on requests with 'unsafe' methods. Instead, use
|
|
|
|
alternatives like ``<a rel="noreferrer" ...>"`` for links to third-party
|
|
|
|
sites.
|
|
|
|
|
2022-12-06 04:59:43 +00:00
|
|
|
.. _BREACH: https://www.breachattack.com/
|
2021-01-02 23:46:17 +00:00
|
|
|
.. _Origin header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin
|
2017-05-24 23:36:45 +00:00
|
|
|
.. _disable the referer: https://www.w3.org/TR/referrer-policy/#referrer-policy-delivery
|
Fixed #20869 -- made CSRF tokens change every request by salt-encrypting them
Note that the cookie is not changed every request, just the token retrieved
by the `get_token()` method (used also by the `{% csrf_token %}` tag).
While at it, made token validation strict: Where, before, any length was
accepted and non-ASCII chars were ignored, we now treat anything other than
`[A-Za-z0-9]{64}` as invalid (except for 32-char tokens, which, for
backwards-compatibility, are accepted and replaced by 64-char ones).
Thanks Trac user patrys for reporting, github user adambrenecki
for initial patch, Tim Graham for help, and Curtis Maloney,
Collin Anderson, Florian Apolloner, Markus Holtermann & Jon Dufresne
for reviews.
2015-11-07 16:35:45 +00:00
|
|
|
|
2011-05-09 22:59:52 +00:00
|
|
|
.. _csrf-limitations:
|
|
|
|
|
2006-05-08 23:03:08 +00:00
|
|
|
Limitations
|
|
|
|
===========
|
2006-12-18 03:59:45 +00:00
|
|
|
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
Subdomains within a site will be able to set cookies on the client for the whole
|
2022-03-14 06:46:01 +00:00
|
|
|
domain. By setting the cookie and using a corresponding token, subdomains will
|
|
|
|
be able to circumvent the CSRF protection. The only way to avoid this is to
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
ensure that subdomains are controlled by trusted users (or, are at least unable
|
2022-03-14 06:46:01 +00:00
|
|
|
to set cookies). Note that even without CSRF, there are other vulnerabilities,
|
Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.
This is a large change to CSRF protection for Django. It includes:
* removing the dependency on the session framework.
* deprecating CsrfResponseMiddleware, and replacing with a core template tag.
* turning on CSRF protection by default by adding CsrfViewMiddleware to
the default value of MIDDLEWARE_CLASSES.
* protecting all contrib apps (whatever is in settings.py)
using a decorator.
For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.
Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.
Details of the rationale for these changes is found here:
http://code.djangoproject.com/wiki/CsrfProtection
As of this commit, the CSRF code is mainly in 'contrib'. The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-26 23:23:07 +00:00
|
|
|
such as session fixation, that make giving subdomains to untrusted parties a bad
|
|
|
|
idea, and these vulnerabilities cannot easily be fixed with current browsers.
|
|
|
|
|
2011-05-09 18:27:36 +00:00
|
|
|
Utilities
|
2022-03-16 01:19:48 +00:00
|
|
|
=========
|
|
|
|
|
|
|
|
.. module:: django.views.decorators.csrf
|
2011-05-09 18:27:36 +00:00
|
|
|
|
2014-11-15 12:15:56 +00:00
|
|
|
The examples below assume you are using function-based views. If you
|
|
|
|
are working with class-based views, you can refer to :ref:`Decorating
|
|
|
|
class-based views<decorating-class-based-views>`.
|
|
|
|
|
2011-05-09 18:27:45 +00:00
|
|
|
.. function:: csrf_exempt(view)
|
|
|
|
|
|
|
|
This decorator marks a view as being exempt from the protection ensured by
|
|
|
|
the middleware. Example::
|
|
|
|
|
2013-05-19 10:22:40 +00:00
|
|
|
from django.http import HttpResponse
|
2018-05-12 17:37:42 +00:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2011-05-09 18:27:45 +00:00
|
|
|
|
2023-02-28 19:53:28 +00:00
|
|
|
|
2011-05-09 18:27:45 +00:00
|
|
|
@csrf_exempt
|
|
|
|
def my_view(request):
|
|
|
|
return HttpResponse("Hello world")
|
|
|
|
|
2023-07-08 20:00:42 +00:00
|
|
|
.. versionchanged:: 5.0
|
|
|
|
|
|
|
|
Support for wrapping asynchronous view functions was added.
|
|
|
|
|
2022-03-16 01:19:48 +00:00
|
|
|
.. function:: csrf_protect(view)
|
|
|
|
|
|
|
|
Decorator that provides the protection of ``CsrfViewMiddleware`` to a view.
|
|
|
|
|
|
|
|
Usage::
|
|
|
|
|
|
|
|
from django.shortcuts import render
|
|
|
|
from django.views.decorators.csrf import csrf_protect
|
|
|
|
|
2023-02-28 19:53:28 +00:00
|
|
|
|
2022-03-16 01:19:48 +00:00
|
|
|
@csrf_protect
|
|
|
|
def my_view(request):
|
|
|
|
c = {}
|
|
|
|
# ...
|
|
|
|
return render(request, "a_template.html", c)
|
|
|
|
|
2023-07-08 21:51:19 +00:00
|
|
|
.. versionchanged:: 5.0
|
|
|
|
|
|
|
|
Support for wrapping asynchronous view functions was added.
|
|
|
|
|
2011-05-09 18:27:36 +00:00
|
|
|
.. function:: requires_csrf_token(view)
|
|
|
|
|
|
|
|
Normally the :ttag:`csrf_token` template tag will not work if
|
|
|
|
``CsrfViewMiddleware.process_view`` or an equivalent like ``csrf_protect``
|
|
|
|
has not run. The view decorator ``requires_csrf_token`` can be used to
|
|
|
|
ensure the template tag does work. This decorator works similarly to
|
|
|
|
``csrf_protect``, but never rejects an incoming request.
|
|
|
|
|
|
|
|
Example::
|
|
|
|
|
|
|
|
from django.shortcuts import render
|
2018-05-12 17:37:42 +00:00
|
|
|
from django.views.decorators.csrf import requires_csrf_token
|
2011-05-09 18:27:36 +00:00
|
|
|
|
2023-02-28 19:53:28 +00:00
|
|
|
|
2011-05-09 18:27:36 +00:00
|
|
|
@requires_csrf_token
|
|
|
|
def my_view(request):
|
|
|
|
c = {}
|
|
|
|
# ...
|
|
|
|
return render(request, "a_template.html", c)
|
|
|
|
|
2023-07-08 21:51:19 +00:00
|
|
|
.. versionchanged:: 5.0
|
|
|
|
|
|
|
|
Support for wrapping asynchronous view functions was added.
|
|
|
|
|
2011-05-09 21:35:24 +00:00
|
|
|
.. function:: ensure_csrf_cookie(view)
|
|
|
|
|
|
|
|
This decorator forces a view to send the CSRF cookie.
|
|
|
|
|
2023-07-08 21:51:19 +00:00
|
|
|
.. versionchanged:: 5.0
|
|
|
|
|
|
|
|
Support for wrapping asynchronous view functions was added.
|
|
|
|
|
2011-05-09 23:00:10 +00:00
|
|
|
Settings
|
|
|
|
========
|
|
|
|
|
2013-01-12 23:44:53 +00:00
|
|
|
A number of settings can be used to control Django's CSRF behavior:
|
2011-05-09 23:00:10 +00:00
|
|
|
|
2014-03-04 00:52:28 +00:00
|
|
|
* :setting:`CSRF_COOKIE_AGE`
|
2013-01-12 23:44:53 +00:00
|
|
|
* :setting:`CSRF_COOKIE_DOMAIN`
|
2013-02-07 08:48:08 +00:00
|
|
|
* :setting:`CSRF_COOKIE_HTTPONLY`
|
2013-01-12 23:44:53 +00:00
|
|
|
* :setting:`CSRF_COOKIE_NAME`
|
|
|
|
* :setting:`CSRF_COOKIE_PATH`
|
2018-04-14 00:58:31 +00:00
|
|
|
* :setting:`CSRF_COOKIE_SAMESITE`
|
2013-01-12 23:44:53 +00:00
|
|
|
* :setting:`CSRF_COOKIE_SECURE`
|
|
|
|
* :setting:`CSRF_FAILURE_VIEW`
|
2015-02-21 21:57:02 +00:00
|
|
|
* :setting:`CSRF_HEADER_NAME`
|
2015-09-01 02:32:03 +00:00
|
|
|
* :setting:`CSRF_TRUSTED_ORIGINS`
|
2016-06-30 16:42:11 +00:00
|
|
|
* :setting:`CSRF_USE_SESSIONS`
|
2016-02-03 18:29:45 +00:00
|
|
|
|
|
|
|
Frequently Asked Questions
|
|
|
|
==========================
|
|
|
|
|
|
|
|
Is posting an arbitrary CSRF token pair (cookie and POST data) a vulnerability?
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
No, this is by design. Without a man-in-the-middle attack, there is no way for
|
|
|
|
an attacker to send a CSRF token cookie to a victim's browser, so a successful
|
|
|
|
attack would need to obtain the victim's browser's cookie via XSS or similar,
|
|
|
|
in which case an attacker usually doesn't need CSRF attacks.
|
|
|
|
|
|
|
|
Some security audit tools flag this as a problem but as mentioned before, an
|
|
|
|
attacker cannot steal a user's browser's CSRF cookie. "Stealing" or modifying
|
|
|
|
*your own* token using Firebug, Chrome dev tools, etc. isn't a vulnerability.
|
|
|
|
|
2017-01-19 20:56:39 +00:00
|
|
|
Is it a problem that Django's CSRF protection isn't linked to a session by default?
|
|
|
|
-----------------------------------------------------------------------------------
|
2016-02-03 18:29:45 +00:00
|
|
|
|
|
|
|
No, this is by design. Not linking CSRF protection to a session allows using
|
2020-03-31 08:37:38 +00:00
|
|
|
the protection on sites such as a *pastebin* that allow submissions from
|
2016-02-03 18:29:45 +00:00
|
|
|
anonymous users which don't have a session.
|
|
|
|
|
2017-01-19 20:56:39 +00:00
|
|
|
If you wish to store the CSRF token in the user's session, use the
|
|
|
|
:setting:`CSRF_USE_SESSIONS` setting.
|
|
|
|
|
2016-04-03 09:35:24 +00:00
|
|
|
Why might a user encounter a CSRF validation failure after logging in?
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
|
|
|
|
For security reasons, CSRF tokens are rotated each time a user logs in. Any
|
|
|
|
page with a form generated before a login will have an old, invalid CSRF token
|
|
|
|
and need to be reloaded. This might happen if a user uses the back button after
|
2018-07-18 15:24:07 +00:00
|
|
|
a login or if they log in a different browser tab.
|