csrf.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  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. Web site contains a link, a form button or some javascript that is intended to
  9. perform some action on your Web site, 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 9.1.1 Safe Methods, HTTP 1.1,
  15. :rfc:`2616#section-9.1.1`) are side-effect free. Requests via 'unsafe' methods,
  16. such as POST, PUT and DELETE, can then be protected by following the steps
  17. below.
  18. .. _Cross Site Request Forgeries: http://www.squarefree.com/securitytips/web-developers.html#CSRF
  19. .. _using-csrf:
  20. How to use it
  21. =============
  22. To enable CSRF protection for your views, follow these steps:
  23. 1. Add the middleware
  24. ``'django.middleware.csrf.CsrfViewMiddleware'`` to your list of
  25. middleware classes, :setting:`MIDDLEWARE_CLASSES`. (It should come
  26. before any view middleware that assume that CSRF attacks have
  27. been dealt with.)
  28. Alternatively, you can use the decorator
  29. :func:`~django.views.decorators.csrf.csrf_protect` on particular views
  30. you want to protect (see below).
  31. 2. In any template that uses a POST form, use the :ttag:`csrf_token` tag inside
  32. the ``<form>`` element if the form is for an internal URL, e.g.::
  33. <form action="." method="post">{% csrf_token %}
  34. This should not be done for POST forms that target external URLs, since
  35. that would cause the CSRF token to be leaked, leading to a vulnerability.
  36. 3. In the corresponding view functions, ensure that the
  37. ``'django.core.context_processors.csrf'`` context processor is
  38. being used. Usually, this can be done in one of two ways:
  39. 1. Use RequestContext, which always uses
  40. ``'django.core.context_processors.csrf'`` (no matter what your
  41. TEMPLATE_CONTEXT_PROCESSORS setting). If you are using
  42. generic views or contrib apps, you are covered already, since these
  43. apps use RequestContext throughout.
  44. 2. Manually import and use the processor to generate the CSRF token and
  45. add it to the template context. e.g.::
  46. from django.core.context_processors import csrf
  47. from django.shortcuts import render_to_response
  48. def my_view(request):
  49. c = {}
  50. c.update(csrf(request))
  51. # ... view code here
  52. return render_to_response("a_template.html", c)
  53. You may want to write your own
  54. :func:`~django.shortcuts.render_to_response()` wrapper that takes care
  55. of this step for you.
  56. .. _csrf-ajax:
  57. AJAX
  58. ----
  59. While the above method can be used for AJAX POST requests, it has some
  60. inconveniences: you have to remember to pass the CSRF token in as POST data with
  61. every POST request. For this reason, there is an alternative method: on each
  62. XMLHttpRequest, set a custom ``X-CSRFToken`` header to the value of the CSRF
  63. token. This is often easier, because many javascript frameworks provide hooks
  64. that allow headers to be set on every request.
  65. As a first step, you must get the CSRF token itself. The recommended source for
  66. the token is the ``csrftoken`` cookie, which will be set if you've enabled CSRF
  67. protection for your views as outlined above.
  68. .. note::
  69. The CSRF token cookie is named ``csrftoken`` by default, but you can control
  70. the cookie name via the :setting:`CSRF_COOKIE_NAME` setting.
  71. Acquiring the token is straightforward:
  72. .. code-block:: javascript
  73. // using jQuery
  74. function getCookie(name) {
  75. var cookieValue = null;
  76. if (document.cookie && document.cookie != '') {
  77. var cookies = document.cookie.split(';');
  78. for (var i = 0; i < cookies.length; i++) {
  79. var cookie = jQuery.trim(cookies[i]);
  80. // Does this cookie string begin with the name we want?
  81. if (cookie.substring(0, name.length + 1) == (name + '=')) {
  82. cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
  83. break;
  84. }
  85. }
  86. }
  87. return cookieValue;
  88. }
  89. var csrftoken = getCookie('csrftoken');
  90. The above code could be simplified by using the `jQuery cookie plugin
  91. <http://plugins.jquery.com/cookie/>`_ to replace ``getCookie``:
  92. .. code-block:: javascript
  93. var csrftoken = $.cookie('csrftoken');
  94. .. note::
  95. The CSRF token is also present in the DOM, but only if explicitly included
  96. using :ttag:`csrf_token` in a template. The cookie contains the canonical
  97. token; the ``CsrfViewMiddleware`` will prefer the cookie to the token in
  98. the DOM. Regardless, you're guaranteed to have the cookie if the token is
  99. present in the DOM, so you should use the cookie!
  100. .. warning::
  101. If your view is not rendering a template containing the :ttag:`csrf_token`
  102. template tag, Django might not set the CSRF token cookie. This is common in
  103. cases where forms are dynamically added to the page. To address this case,
  104. Django provides a view decorator which forces setting of the cookie:
  105. :func:`~django.views.decorators.csrf.ensure_csrf_cookie`.
  106. Finally, you'll have to actually set the header on your AJAX request, while
  107. protecting the CSRF token from being sent to other domains using
  108. `settings.crossDomain <http://api.jquery.com/jQuery.ajax>`_ in jQuery 1.5.1 and
  109. newer:
  110. .. code-block:: javascript
  111. function csrfSafeMethod(method) {
  112. // these HTTP methods do not require CSRF protection
  113. return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
  114. }
  115. $.ajaxSetup({
  116. beforeSend: function(xhr, settings) {
  117. if (!csrfSafeMethod(settings.type) && !this.crossDomain) {
  118. xhr.setRequestHeader("X-CSRFToken", csrftoken);
  119. }
  120. }
  121. });
  122. Other template engines
  123. ----------------------
  124. When using a different template engine than Django's built-in engine, you can
  125. set the token in your forms manually after making sure it's available in the
  126. template context.
  127. For example, in the Jinja2 template language, your form could contain the
  128. following:
  129. .. code-block:: html
  130. <div style="display:none">
  131. <input type="hidden" name="csrfmiddlewaretoken" value="{{ csrf_token }}">
  132. </div>
  133. You can use JavaScript similar to the :ref:`AJAX code <csrf-ajax>` above to get
  134. the value of the CSRF token.
  135. The decorator method
  136. --------------------
  137. .. module:: django.views.decorators.csrf
  138. Rather than adding ``CsrfViewMiddleware`` as a blanket protection, you can use
  139. the ``csrf_protect`` decorator, which has exactly the same functionality, on
  140. particular views that need the protection. It must be used **both** on views
  141. that insert the CSRF token in the output, and on those that accept the POST form
  142. data. (These are often the same view function, but not always).
  143. Use of the decorator by itself is **not recommended**, since if you forget to
  144. use it, you will have a security hole. The 'belt and braces' strategy of using
  145. both is fine, and will incur minimal overhead.
  146. .. function:: csrf_protect(view)
  147. Decorator that provides the protection of ``CsrfViewMiddleware`` to a view.
  148. Usage::
  149. from django.views.decorators.csrf import csrf_protect
  150. from django.shortcuts import render
  151. @csrf_protect
  152. def my_view(request):
  153. c = {}
  154. # ...
  155. return render(request, "a_template.html", c)
  156. Rejected requests
  157. =================
  158. By default, a '403 Forbidden' response is sent to the user if an incoming
  159. request fails the checks performed by ``CsrfViewMiddleware``. This should
  160. usually only be seen when there is a genuine Cross Site Request Forgery, or
  161. when, due to a programming error, the CSRF token has not been included with a
  162. POST form.
  163. The error page, however, is not very friendly, so you may want to provide your
  164. own view for handling this condition. To do this, simply set the
  165. :setting:`CSRF_FAILURE_VIEW` setting.
  166. .. _how-csrf-works:
  167. How it works
  168. ============
  169. The CSRF protection is based on the following things:
  170. 1. A CSRF cookie that is set to a random value (a session independent nonce, as
  171. it is called), which other sites will not have access to.
  172. This cookie is set by ``CsrfViewMiddleware``. It is meant to be permanent,
  173. but since there is no way to set a cookie that never expires, it is sent with
  174. every response that has called ``django.middleware.csrf.get_token()``
  175. (the function used internally to retrieve the CSRF token).
  176. 2. A hidden form field with the name 'csrfmiddlewaretoken' present in all
  177. outgoing POST forms. The value of this field is the value of the CSRF
  178. cookie.
  179. This part is done by the template tag.
  180. 3. For all incoming requests that are not using HTTP GET, HEAD, OPTIONS or
  181. TRACE, a CSRF cookie must be present, and the 'csrfmiddlewaretoken' field
  182. must be present and correct. If it isn't, the user will get a 403 error.
  183. This check is done by ``CsrfViewMiddleware``.
  184. 4. In addition, for HTTPS requests, strict referer checking is done by
  185. ``CsrfViewMiddleware``. This is necessary to address a Man-In-The-Middle
  186. attack that is possible under HTTPS when using a session independent nonce,
  187. due to the fact that HTTP 'Set-Cookie' headers are (unfortunately) accepted
  188. by clients that are talking to a site under HTTPS. (Referer checking is not
  189. done for HTTP requests because the presence of the Referer header is not
  190. reliable enough under HTTP.)
  191. This ensures that only forms that have originated from your Web site can be used
  192. to POST data back.
  193. It deliberately ignores GET requests (and other requests that are defined as
  194. 'safe' by :rfc:`2616`). These requests ought never to have any potentially
  195. dangerous side effects , and so a CSRF attack with a GET request ought to be
  196. harmless. :rfc:`2616` defines POST, PUT and DELETE as 'unsafe', and all other
  197. methods are assumed to be unsafe, for maximum protection.
  198. Caching
  199. =======
  200. If the :ttag:`csrf_token` template tag is used by a template (or the
  201. ``get_token`` function is called some other way), ``CsrfViewMiddleware`` will
  202. add a cookie and a ``Vary: Cookie`` header to the response. This means that the
  203. middleware will play well with the cache middleware if it is used as instructed
  204. (``UpdateCacheMiddleware`` goes before all other middleware).
  205. However, if you use cache decorators on individual views, the CSRF middleware
  206. will not yet have been able to set the Vary header or the CSRF cookie, and the
  207. response will be cached without either one. In this case, on any views that
  208. will require a CSRF token to be inserted you should use the
  209. :func:`django.views.decorators.csrf.csrf_protect` decorator first::
  210. from django.views.decorators.cache import cache_page
  211. from django.views.decorators.csrf import csrf_protect
  212. @cache_page(60 * 15)
  213. @csrf_protect
  214. def my_view(request):
  215. # ...
  216. Testing
  217. =======
  218. The ``CsrfViewMiddleware`` will usually be a big hindrance to testing view
  219. functions, due to the need for the CSRF token which must be sent with every POST
  220. request. For this reason, Django's HTTP client for tests has been modified to
  221. set a flag on requests which relaxes the middleware and the ``csrf_protect``
  222. decorator so that they no longer rejects requests. In every other respect
  223. (e.g. sending cookies etc.), they behave the same.
  224. If, for some reason, you *want* the test client to perform CSRF
  225. checks, you can create an instance of the test client that enforces
  226. CSRF checks::
  227. >>> from django.test import Client
  228. >>> csrf_client = Client(enforce_csrf_checks=True)
  229. .. _csrf-limitations:
  230. Limitations
  231. ===========
  232. Subdomains within a site will be able to set cookies on the client for the whole
  233. domain. By setting the cookie and using a corresponding token, subdomains will
  234. be able to circumvent the CSRF protection. The only way to avoid this is to
  235. ensure that subdomains are controlled by trusted users (or, are at least unable
  236. to set cookies). Note that even without CSRF, there are other vulnerabilities,
  237. such as session fixation, that make giving subdomains to untrusted parties a bad
  238. idea, and these vulnerabilities cannot easily be fixed with current browsers.
  239. Edge cases
  240. ==========
  241. Certain views can have unusual requirements that mean they don't fit the normal
  242. pattern envisaged here. A number of utilities can be useful in these
  243. situations. The scenarios they might be needed in are described in the following
  244. section.
  245. Utilities
  246. ---------
  247. .. function:: csrf_exempt(view)
  248. This decorator marks a view as being exempt from the protection ensured by
  249. the middleware. Example::
  250. from django.views.decorators.csrf import csrf_exempt
  251. from django.http import HttpResponse
  252. @csrf_exempt
  253. def my_view(request):
  254. return HttpResponse('Hello world')
  255. .. function:: requires_csrf_token(view)
  256. Normally the :ttag:`csrf_token` template tag will not work if
  257. ``CsrfViewMiddleware.process_view`` or an equivalent like ``csrf_protect``
  258. has not run. The view decorator ``requires_csrf_token`` can be used to
  259. ensure the template tag does work. This decorator works similarly to
  260. ``csrf_protect``, but never rejects an incoming request.
  261. Example::
  262. from django.views.decorators.csrf import requires_csrf_token
  263. from django.shortcuts import render
  264. @requires_csrf_token
  265. def my_view(request):
  266. c = {}
  267. # ...
  268. return render(request, "a_template.html", c)
  269. .. function:: ensure_csrf_cookie(view)
  270. This decorator forces a view to send the CSRF cookie.
  271. Scenarios
  272. ---------
  273. CSRF protection should be disabled for just a few views
  274. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  275. Most views requires CSRF protection, but a few do not.
  276. Solution: rather than disabling the middleware and applying ``csrf_protect`` to
  277. all the views that need it, enable the middleware and use
  278. :func:`~django.views.decorators.csrf.csrf_exempt`.
  279. CsrfViewMiddleware.process_view not used
  280. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  281. There are cases when ``CsrfViewMiddleware.process_view`` may not have run
  282. before your view is run - 404 and 500 handlers, for example - but you still
  283. need the CSRF token in a form.
  284. Solution: use :func:`~django.views.decorators.csrf.requires_csrf_token`
  285. Unprotected view needs the CSRF token
  286. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  287. There may be some views that are unprotected and have been exempted by
  288. ``csrf_exempt``, but still need to include the CSRF token.
  289. Solution: use :func:`~django.views.decorators.csrf.csrf_exempt` followed by
  290. :func:`~django.views.decorators.csrf.requires_csrf_token`. (i.e. ``requires_csrf_token``
  291. should be the innermost decorator).
  292. View needs protection for one path
  293. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  294. A view needs CSRF protection under one set of conditions only, and mustn't have
  295. it for the rest of the time.
  296. Solution: use :func:`~django.views.decorators.csrf.csrf_exempt` for the whole
  297. view function, and :func:`~django.views.decorators.csrf.csrf_protect` for the
  298. path within it that needs protection. Example::
  299. from django.views.decorators.csrf import csrf_exempt, csrf_protect
  300. @csrf_exempt
  301. def my_view(request):
  302. @csrf_protect
  303. def protected_path(request):
  304. do_something()
  305. if some_condition():
  306. return protected_path(request)
  307. else:
  308. do_something_else()
  309. Page uses AJAX without any HTML form
  310. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  311. A page makes a POST request via AJAX, and the page does not have an HTML form
  312. with a :ttag:`csrf_token` that would cause the required CSRF cookie to be sent.
  313. Solution: use :func:`~django.views.decorators.csrf.ensure_csrf_cookie` on the
  314. view that sends the page.
  315. Contrib and reusable apps
  316. =========================
  317. Because it is possible for the developer to turn off the ``CsrfViewMiddleware``,
  318. all relevant views in contrib apps use the ``csrf_protect`` decorator to ensure
  319. the security of these applications against CSRF. It is recommended that the
  320. developers of other reusable apps that want the same guarantees also use the
  321. ``csrf_protect`` decorator on their views.
  322. Settings
  323. ========
  324. A number of settings can be used to control Django's CSRF behavior:
  325. * :setting:`CSRF_COOKIE_AGE`
  326. * :setting:`CSRF_COOKIE_DOMAIN`
  327. * :setting:`CSRF_COOKIE_HTTPONLY`
  328. * :setting:`CSRF_COOKIE_NAME`
  329. * :setting:`CSRF_COOKIE_PATH`
  330. * :setting:`CSRF_COOKIE_SECURE`
  331. * :setting:`CSRF_FAILURE_VIEW`