csrf.txt 17 KB

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