csrf.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. =====================================
  2. Cross Site Request Forgery protection
  3. =====================================
  4. .. module:: django.middleware.csrf
  5. :synopsis: Protects against Cross Site Request Forgeries
  6. The CSRF middleware and template tag provides easy-to-use protection against
  7. `Cross Site Request Forgeries`_. This type of attack occurs when a malicious
  8. website contains a link, a form button or some JavaScript that is intended to
  9. perform some action on your website, using the credentials of a logged-in user
  10. who visits the malicious site in their browser. A related type of attack,
  11. 'login CSRF', where an attacking site tricks a user's browser into logging into
  12. a site with someone else's credentials, is also covered.
  13. The first defense against CSRF attacks is to ensure that GET requests (and other
  14. 'safe' methods, as defined by :rfc:`7231#section-4.2.1`) are side effect free.
  15. Requests via 'unsafe' methods, such as POST, PUT, and DELETE, can then be
  16. protected by following the steps below.
  17. .. _Cross Site Request Forgeries: https://www.squarefree.com/securitytips/web-developers.html#CSRF
  18. .. _using-csrf:
  19. How to use it
  20. =============
  21. To take advantage of CSRF protection in your views, follow these steps:
  22. 1. The CSRF middleware is activated by default in the
  23. :setting:`MIDDLEWARE_CLASSES` setting. If you override that setting, remember
  24. that ``'django.middleware.csrf.CsrfViewMiddleware'`` should come before any
  25. view middleware that assume that CSRF attacks have been dealt with.
  26. If you disabled it, which is not recommended, you can use
  27. :func:`~django.views.decorators.csrf.csrf_protect` on particular views
  28. you want to protect (see below).
  29. 2. In any template that uses a POST form, use the :ttag:`csrf_token` tag inside
  30. the ``<form>`` element if the form is for an internal URL, e.g.:
  31. .. code-block:: html+django
  32. <form action="" method="post">{% csrf_token %}
  33. This should not be done for POST forms that target external URLs, since
  34. that would cause the CSRF token to be leaked, leading to a vulnerability.
  35. 3. In the corresponding view functions, ensure that
  36. :class:`~django.template.RequestContext` is used to render the response so
  37. that ``{% csrf_token %}`` will work properly. If you're using the
  38. :func:`~django.shortcuts.render` function, generic views, or contrib apps,
  39. you are covered already since these all use ``RequestContext``.
  40. .. _csrf-ajax:
  41. AJAX
  42. ----
  43. While the above method can be used for AJAX POST requests, it has some
  44. inconveniences: you have to remember to pass the CSRF token in as POST data with
  45. every POST request. For this reason, there is an alternative method: on each
  46. XMLHttpRequest, set a custom ``X-CSRFToken`` header to the value of the CSRF
  47. token. This is often easier, because many JavaScript frameworks provide hooks
  48. that allow headers to be set on every request.
  49. As a first step, you must get the CSRF token itself. The recommended source for
  50. the token is the ``csrftoken`` cookie, which will be set if you've enabled CSRF
  51. protection for your views as outlined above.
  52. .. note::
  53. The CSRF token cookie is named ``csrftoken`` by default, but you can control
  54. the cookie name via the :setting:`CSRF_COOKIE_NAME` setting.
  55. The CSRF header name is ``HTTP_X_CSRFTOKEN`` by default, but you can
  56. customize it using the :setting:`CSRF_HEADER_NAME` setting.
  57. Acquiring the token is straightforward:
  58. .. code-block:: javascript
  59. // using jQuery
  60. function getCookie(name) {
  61. var cookieValue = null;
  62. if (document.cookie && document.cookie !== '') {
  63. var cookies = document.cookie.split(';');
  64. for (var i = 0; i < cookies.length; i++) {
  65. var cookie = jQuery.trim(cookies[i]);
  66. // Does this cookie string begin with the name we want?
  67. if (cookie.substring(0, name.length + 1) === (name + '=')) {
  68. cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
  69. break;
  70. }
  71. }
  72. }
  73. return cookieValue;
  74. }
  75. var csrftoken = getCookie('csrftoken');
  76. The above code could be simplified by using the `JavaScript Cookie library
  77. <https://github.com/js-cookie/js-cookie/>`_ to replace ``getCookie``:
  78. .. code-block:: javascript
  79. var csrftoken = Cookies.get('csrftoken');
  80. .. note::
  81. The CSRF token is also present in the DOM, but only if explicitly included
  82. using :ttag:`csrf_token` in a template. The cookie contains the canonical
  83. token; the ``CsrfViewMiddleware`` will prefer the cookie to the token in
  84. the DOM. Regardless, you're guaranteed to have the cookie if the token is
  85. present in the DOM, so you should use the cookie!
  86. .. warning::
  87. If your view is not rendering a template containing the :ttag:`csrf_token`
  88. template tag, Django might not set the CSRF token cookie. This is common in
  89. cases where forms are dynamically added to the page. To address this case,
  90. Django provides a view decorator which forces setting of the cookie:
  91. :func:`~django.views.decorators.csrf.ensure_csrf_cookie`.
  92. Finally, you'll have to actually set the header on your AJAX request, while
  93. protecting the CSRF token from being sent to other domains using
  94. `settings.crossDomain <https://api.jquery.com/jQuery.ajax>`_ in jQuery 1.5.1 and
  95. newer:
  96. .. code-block:: javascript
  97. function csrfSafeMethod(method) {
  98. // these HTTP methods do not require CSRF protection
  99. return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
  100. }
  101. $.ajaxSetup({
  102. beforeSend: function(xhr, settings) {
  103. if (!csrfSafeMethod(settings.type) && !this.crossDomain) {
  104. xhr.setRequestHeader("X-CSRFToken", csrftoken);
  105. }
  106. }
  107. });
  108. If you're using AngularJS 1.1.3 and newer, it's sufficient to configure the
  109. ``$http`` provider with the cookie and header names:
  110. .. code-block:: javascript
  111. $httpProvider.defaults.xsrfCookieName = 'csrftoken';
  112. $httpProvider.defaults.xsrfHeaderName = 'X-CSRFToken';
  113. Using CSRF in Jinja2 templates
  114. ------------------------------
  115. Django's :class:`~django.template.backends.jinja2.Jinja2` template backend
  116. adds ``{{ csrf_input }}`` to the context of all templates which is equivalent
  117. to ``{% csrf_token %}`` in the Django template language. For example:
  118. .. code-block:: html+jinja
  119. <form action="" method="post">{{ csrf_input }}
  120. The decorator method
  121. --------------------
  122. .. module:: django.views.decorators.csrf
  123. Rather than adding ``CsrfViewMiddleware`` as a blanket protection, you can use
  124. the ``csrf_protect`` decorator, which has exactly the same functionality, on
  125. particular views that need the protection. It must be used **both** on views
  126. that insert the CSRF token in the output, and on those that accept the POST form
  127. data. (These are often the same view function, but not always).
  128. Use of the decorator by itself is **not recommended**, since if you forget to
  129. use it, you will have a security hole. The 'belt and braces' strategy of using
  130. both is fine, and will incur minimal overhead.
  131. .. function:: csrf_protect(view)
  132. Decorator that provides the protection of ``CsrfViewMiddleware`` to a view.
  133. Usage::
  134. from django.views.decorators.csrf import csrf_protect
  135. from django.shortcuts import render
  136. @csrf_protect
  137. def my_view(request):
  138. c = {}
  139. # ...
  140. return render(request, "a_template.html", c)
  141. If you are using class-based views, you can refer to
  142. :ref:`Decorating class-based views<decorating-class-based-views>`.
  143. Rejected requests
  144. =================
  145. By default, a '403 Forbidden' response is sent to the user if an incoming
  146. request fails the checks performed by ``CsrfViewMiddleware``. This should
  147. usually only be seen when there is a genuine Cross Site Request Forgery, or
  148. when, due to a programming error, the CSRF token has not been included with a
  149. POST form.
  150. The error page, however, is not very friendly, so you may want to provide your
  151. own view for handling this condition. To do this, simply set the
  152. :setting:`CSRF_FAILURE_VIEW` setting.
  153. CSRF failures are logged as warnings to the :ref:`django-request-logger`
  154. logger.
  155. .. _how-csrf-works:
  156. How it works
  157. ============
  158. The CSRF protection is based on the following things:
  159. 1. A CSRF cookie that is set to a random value (a session independent nonce, as
  160. it is called), which other sites will not have access to.
  161. This cookie is set by ``CsrfViewMiddleware``. It is meant to be permanent,
  162. but since there is no way to set a cookie that never expires, it is sent with
  163. every response that has called ``django.middleware.csrf.get_token()``
  164. (the function used internally to retrieve the CSRF token).
  165. For security reasons, the value of the CSRF cookie is changed each time a
  166. user logs in.
  167. 2. A hidden form field with the name 'csrfmiddlewaretoken' present in all
  168. outgoing POST forms. The value of this field is the value of the CSRF
  169. cookie.
  170. This part is done by the template tag.
  171. 3. For all incoming requests that are not using HTTP GET, HEAD, OPTIONS or
  172. TRACE, a CSRF cookie must be present, and the 'csrfmiddlewaretoken' field
  173. must be present and correct. If it isn't, the user will get a 403 error.
  174. This check is done by ``CsrfViewMiddleware``.
  175. 4. In addition, for HTTPS requests, strict referer checking is done by
  176. ``CsrfViewMiddleware``. This means that even if a subdomain can set or
  177. modify cookies on your domain, it can't force a user to post to your
  178. application since that request won't come from your own exact domain.
  179. This also addresses a man-in-the-middle attack that's possible under HTTPS
  180. when using a session independent nonce, due to the fact that HTTP
  181. ``Set-Cookie`` headers are (unfortunately) accepted by clients even when
  182. they are talking to a site under HTTPS. (Referer checking is not done for
  183. HTTP requests because the presence of the ``Referer`` header isn't reliable
  184. enough under HTTP.)
  185. If the :setting:`CSRF_COOKIE_DOMAIN` setting is set, the referer is compared
  186. against it. This setting supports subdomains. For example,
  187. ``CSRF_COOKIE_DOMAIN = '.example.com'`` will allow POST requests from
  188. ``www.example.com`` and ``api.example.com``. If the setting is not set, then
  189. the referer must match the HTTP ``Host`` header.
  190. Expanding the accepted referers beyond the current host or cookie domain can
  191. be done with the :setting:`CSRF_TRUSTED_ORIGINS` setting.
  192. This ensures that only forms that have originated from trusted domains can be
  193. used to POST data back.
  194. It deliberately ignores GET requests (and other requests that are defined as
  195. 'safe' by :rfc:`7231`). These requests ought never to have any potentially
  196. dangerous side effects , and so a CSRF attack with a GET request ought to be
  197. harmless. :rfc:`7231` defines POST, PUT, and DELETE as 'unsafe', and all other
  198. methods are also assumed to be unsafe, for maximum protection.
  199. The CSRF protection cannot protect against man-in-the-middle attacks, so use
  200. :ref:`HTTPS <security-recommendation-ssl>` with
  201. :ref:`http-strict-transport-security`. It also assumes :ref:`validation of
  202. the HOST header <host-headers-virtual-hosting>` and that there aren't any
  203. :ref:`cross-site scripting vulnerabilities <cross-site-scripting>` on your site
  204. (because XSS vulnerabilities already let an attacker do anything a CSRF
  205. vulnerability allows and much worse).
  206. .. versionchanged:: 1.9
  207. Checking against the :setting:`CSRF_COOKIE_DOMAIN` setting was added.
  208. Caching
  209. =======
  210. If the :ttag:`csrf_token` template tag is used by a template (or the
  211. ``get_token`` function is called some other way), ``CsrfViewMiddleware`` will
  212. add a cookie and a ``Vary: Cookie`` header to the response. This means that the
  213. middleware will play well with the cache middleware if it is used as instructed
  214. (``UpdateCacheMiddleware`` goes before all other middleware).
  215. However, if you use cache decorators on individual views, the CSRF middleware
  216. will not yet have been able to set the Vary header or the CSRF cookie, and the
  217. response will be cached without either one. In this case, on any views that
  218. will require a CSRF token to be inserted you should use the
  219. :func:`django.views.decorators.csrf.csrf_protect` decorator first::
  220. from django.views.decorators.cache import cache_page
  221. from django.views.decorators.csrf import csrf_protect
  222. @cache_page(60 * 15)
  223. @csrf_protect
  224. def my_view(request):
  225. ...
  226. If you are using class-based views, you can refer to :ref:`Decorating
  227. class-based views<decorating-class-based-views>`.
  228. Testing
  229. =======
  230. The ``CsrfViewMiddleware`` will usually be a big hindrance to testing view
  231. functions, due to the need for the CSRF token which must be sent with every POST
  232. request. For this reason, Django's HTTP client for tests has been modified to
  233. set a flag on requests which relaxes the middleware and the ``csrf_protect``
  234. decorator so that they no longer rejects requests. In every other respect
  235. (e.g. sending cookies etc.), they behave the same.
  236. If, for some reason, you *want* the test client to perform CSRF
  237. checks, you can create an instance of the test client that enforces
  238. CSRF checks::
  239. >>> from django.test import Client
  240. >>> csrf_client = Client(enforce_csrf_checks=True)
  241. .. _csrf-limitations:
  242. Limitations
  243. ===========
  244. Subdomains within a site will be able to set cookies on the client for the whole
  245. domain. By setting the cookie and using a corresponding token, subdomains will
  246. be able to circumvent the CSRF protection. The only way to avoid this is to
  247. ensure that subdomains are controlled by trusted users (or, are at least unable
  248. to set cookies). Note that even without CSRF, there are other vulnerabilities,
  249. such as session fixation, that make giving subdomains to untrusted parties a bad
  250. idea, and these vulnerabilities cannot easily be fixed with current browsers.
  251. Edge cases
  252. ==========
  253. Certain views can have unusual requirements that mean they don't fit the normal
  254. pattern envisaged here. A number of utilities can be useful in these
  255. situations. The scenarios they might be needed in are described in the following
  256. section.
  257. Utilities
  258. ---------
  259. The examples below assume you are using function-based views. If you
  260. are working with class-based views, you can refer to :ref:`Decorating
  261. class-based views<decorating-class-based-views>`.
  262. .. function:: csrf_exempt(view)
  263. This decorator marks a view as being exempt from the protection ensured by
  264. the middleware. Example::
  265. from django.views.decorators.csrf import csrf_exempt
  266. from django.http import HttpResponse
  267. @csrf_exempt
  268. def my_view(request):
  269. return HttpResponse('Hello world')
  270. .. function:: requires_csrf_token(view)
  271. Normally the :ttag:`csrf_token` template tag will not work if
  272. ``CsrfViewMiddleware.process_view`` or an equivalent like ``csrf_protect``
  273. has not run. The view decorator ``requires_csrf_token`` can be used to
  274. ensure the template tag does work. This decorator works similarly to
  275. ``csrf_protect``, but never rejects an incoming request.
  276. Example::
  277. from django.views.decorators.csrf import requires_csrf_token
  278. from django.shortcuts import render
  279. @requires_csrf_token
  280. def my_view(request):
  281. c = {}
  282. # ...
  283. return render(request, "a_template.html", c)
  284. .. function:: ensure_csrf_cookie(view)
  285. This decorator forces a view to send the CSRF cookie.
  286. Scenarios
  287. ---------
  288. CSRF protection should be disabled for just a few views
  289. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  290. Most views requires CSRF protection, but a few do not.
  291. Solution: rather than disabling the middleware and applying ``csrf_protect`` to
  292. all the views that need it, enable the middleware and use
  293. :func:`~django.views.decorators.csrf.csrf_exempt`.
  294. CsrfViewMiddleware.process_view not used
  295. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  296. There are cases when ``CsrfViewMiddleware.process_view`` may not have run
  297. before your view is run - 404 and 500 handlers, for example - but you still
  298. need the CSRF token in a form.
  299. Solution: use :func:`~django.views.decorators.csrf.requires_csrf_token`
  300. Unprotected view needs the CSRF token
  301. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  302. There may be some views that are unprotected and have been exempted by
  303. ``csrf_exempt``, but still need to include the CSRF token.
  304. Solution: use :func:`~django.views.decorators.csrf.csrf_exempt` followed by
  305. :func:`~django.views.decorators.csrf.requires_csrf_token`. (i.e. ``requires_csrf_token``
  306. should be the innermost decorator).
  307. View needs protection for one path
  308. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  309. A view needs CSRF protection under one set of conditions only, and mustn't have
  310. it for the rest of the time.
  311. Solution: use :func:`~django.views.decorators.csrf.csrf_exempt` for the whole
  312. view function, and :func:`~django.views.decorators.csrf.csrf_protect` for the
  313. path within it that needs protection. Example::
  314. from django.views.decorators.csrf import csrf_exempt, csrf_protect
  315. @csrf_exempt
  316. def my_view(request):
  317. @csrf_protect
  318. def protected_path(request):
  319. do_something()
  320. if some_condition():
  321. return protected_path(request)
  322. else:
  323. do_something_else()
  324. Page uses AJAX without any HTML form
  325. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  326. A page makes a POST request via AJAX, and the page does not have an HTML form
  327. with a :ttag:`csrf_token` that would cause the required CSRF cookie to be sent.
  328. Solution: use :func:`~django.views.decorators.csrf.ensure_csrf_cookie` on the
  329. view that sends the page.
  330. Contrib and reusable apps
  331. =========================
  332. Because it is possible for the developer to turn off the ``CsrfViewMiddleware``,
  333. all relevant views in contrib apps use the ``csrf_protect`` decorator to ensure
  334. the security of these applications against CSRF. It is recommended that the
  335. developers of other reusable apps that want the same guarantees also use the
  336. ``csrf_protect`` decorator on their views.
  337. Settings
  338. ========
  339. A number of settings can be used to control Django's CSRF behavior:
  340. * :setting:`CSRF_COOKIE_AGE`
  341. * :setting:`CSRF_COOKIE_DOMAIN`
  342. * :setting:`CSRF_COOKIE_HTTPONLY`
  343. * :setting:`CSRF_COOKIE_NAME`
  344. * :setting:`CSRF_COOKIE_PATH`
  345. * :setting:`CSRF_COOKIE_SECURE`
  346. * :setting:`CSRF_FAILURE_VIEW`
  347. * :setting:`CSRF_HEADER_NAME`
  348. * :setting:`CSRF_TRUSTED_ORIGINS`
  349. Frequently Asked Questions
  350. ==========================
  351. Is posting an arbitrary CSRF token pair (cookie and POST data) a vulnerability?
  352. -------------------------------------------------------------------------------
  353. No, this is by design. Without a man-in-the-middle attack, there is no way for
  354. an attacker to send a CSRF token cookie to a victim's browser, so a successful
  355. attack would need to obtain the victim's browser's cookie via XSS or similar,
  356. in which case an attacker usually doesn't need CSRF attacks.
  357. Some security audit tools flag this as a problem but as mentioned before, an
  358. attacker cannot steal a user's browser's CSRF cookie. "Stealing" or modifying
  359. *your own* token using Firebug, Chrome dev tools, etc. isn't a vulnerability.
  360. Is the fact that Django's CSRF protection isn't linked to a session a problem?
  361. ------------------------------------------------------------------------------
  362. No, this is by design. Not linking CSRF protection to a session allows using
  363. the protection on sites such as a `pastebin` that allow submissions from
  364. anonymous users which don't have a session.
  365. Why not use a new token for each request?
  366. -----------------------------------------
  367. Generating a new token for each request is problematic from a UI perspective
  368. because it invalidates all previous forms. Most users would be very unhappy to
  369. find that opening a new tab on your site has invalidated the form they had
  370. just spent time filling out in another tab or that a form they accessed via
  371. the back button could not be filled out.
  372. Why might a user encounter a CSRF validation failure after logging in?
  373. ----------------------------------------------------------------------
  374. For security reasons, CSRF tokens are rotated each time a user logs in. Any
  375. page with a form generated before a login will have an old, invalid CSRF token
  376. and need to be reloaded. This might happen if a user uses the back button after
  377. a login or if they log in in a different browser tab.