middleware.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. ==========
  2. Middleware
  3. ==========
  4. .. module:: django.middleware
  5. :synopsis: Django's built-in middleware classes.
  6. This document explains all middleware components that come with Django. For
  7. information on how to use them and how to write your own middleware, see
  8. the :doc:`middleware usage guide </topics/http/middleware>`.
  9. Available middleware
  10. ====================
  11. Cache middleware
  12. ----------------
  13. .. module:: django.middleware.cache
  14. :synopsis: Middleware for the site-wide cache.
  15. .. class:: UpdateCacheMiddleware
  16. .. class:: FetchFromCacheMiddleware
  17. Enable the site-wide cache. If these are enabled, each Django-powered page will
  18. be cached for as long as the :setting:`CACHE_MIDDLEWARE_SECONDS` setting
  19. defines. See the :doc:`cache documentation </topics/cache>`.
  20. "Common" middleware
  21. -------------------
  22. .. module:: django.middleware.common
  23. :synopsis: Middleware adding "common" conveniences for perfectionists.
  24. .. class:: CommonMiddleware
  25. Adds a few conveniences for perfectionists:
  26. * Forbids access to user agents in the :setting:`DISALLOWED_USER_AGENTS`
  27. setting, which should be a list of compiled regular expression objects.
  28. * Performs URL rewriting based on the :setting:`APPEND_SLASH` and
  29. :setting:`PREPEND_WWW` settings.
  30. If :setting:`APPEND_SLASH` is ``True`` and the initial URL doesn't end
  31. with a slash, and it is not found in the URLconf, then a new URL is
  32. formed by appending a slash at the end. If this new URL is found in the
  33. URLconf, then Django redirects the request to this new URL. Otherwise,
  34. the initial URL is processed as usual.
  35. For example, ``foo.com/bar`` will be redirected to ``foo.com/bar/`` if
  36. you don't have a valid URL pattern for ``foo.com/bar`` but *do* have a
  37. valid pattern for ``foo.com/bar/``.
  38. If :setting:`PREPEND_WWW` is ``True``, URLs that lack a leading "www."
  39. will be redirected to the same URL with a leading "www."
  40. Both of these options are meant to normalize URLs. The philosophy is that
  41. each URL should exist in one, and only one, place. Technically a URL
  42. ``foo.com/bar`` is distinct from ``foo.com/bar/`` -- a search-engine
  43. indexer would treat them as separate URLs -- so it's best practice to
  44. normalize URLs.
  45. * Handles ETags based on the :setting:`USE_ETAGS` setting. If
  46. :setting:`USE_ETAGS` is set to ``True``, Django will calculate an ETag
  47. for each request by MD5-hashing the page content, and it'll take care of
  48. sending ``Not Modified`` responses, if appropriate.
  49. * Sets the ``Content-Length`` header for non-streaming responses.
  50. .. versionchanged: 1.11
  51. Older versions didn't set the ``Content-Length`` header.
  52. .. attribute:: CommonMiddleware.response_redirect_class
  53. Defaults to :class:`~django.http.HttpResponsePermanentRedirect`. Subclass
  54. ``CommonMiddleware`` and override the attribute to customize the redirects
  55. issued by the middleware.
  56. .. class:: BrokenLinkEmailsMiddleware
  57. * Sends broken link notification emails to :setting:`MANAGERS` (see
  58. :doc:`/howto/error-reporting`).
  59. Exception middleware
  60. --------------------
  61. .. module:: django.middleware.exception
  62. :synopsis: Middleware to return responses for exceptions.
  63. .. class:: ExceptionMiddleware
  64. .. versionadded:: 1.10
  65. Catches exceptions raised during the request/response cycle and returns the
  66. appropriate response.
  67. * :class:`~django.http.Http404` is processed by
  68. :data:`~django.conf.urls.handler404` (or a more friendly debug page if
  69. :setting:`DEBUG=True <DEBUG>`).
  70. * :class:`~django.core.exceptions.PermissionDenied` is processed
  71. by :data:`~django.conf.urls.handler403`.
  72. * ``MultiPartParserError`` is processed by :data:`~django.conf.urls.handler400`.
  73. * :class:`~django.core.exceptions.SuspiciousOperation` is processed by
  74. :data:`~django.conf.urls.handler400` (or a more friendly debug page if
  75. :setting:`DEBUG=True <DEBUG>`).
  76. * Any other exception is processed by :data:`~django.conf.urls.handler500`
  77. (or a more friendly debug page if :setting:`DEBUG=True <DEBUG>`).
  78. Django uses this middleware regardless of whether or not you include it in
  79. :setting:`MIDDLEWARE`, however, you may want to subclass if your own middleware
  80. needs to transform any of these exceptions into the appropriate responses.
  81. :class:`~django.middleware.locale.LocaleMiddleware` does this, for example.
  82. GZip middleware
  83. ---------------
  84. .. module:: django.middleware.gzip
  85. :synopsis: Middleware to serve GZipped content for performance.
  86. .. class:: GZipMiddleware
  87. .. warning::
  88. Security researchers recently revealed that when compression techniques
  89. (including ``GZipMiddleware``) are used on a website, the site may become
  90. exposed to a number of possible attacks. Before using ``GZipMiddleware`` on
  91. your site, you should consider very carefully whether you are subject to
  92. these attacks. If you're in *any* doubt about whether you're affected, you
  93. should avoid using ``GZipMiddleware``. For more details, see the `the BREACH
  94. paper (PDF)`_ and `breachattack.com`_.
  95. .. _the BREACH paper (PDF): http://breachattack.com/resources/BREACH%20-%20SSL,%20gone%20in%2030%20seconds.pdf
  96. .. _breachattack.com: http://breachattack.com
  97. Compresses content for browsers that understand GZip compression (all modern
  98. browsers).
  99. This middleware should be placed before any other middleware that need to
  100. read or write the response body so that compression happens afterward.
  101. It will NOT compress content if any of the following are true:
  102. * The content body is less than 200 bytes long.
  103. * The response has already set the ``Content-Encoding`` header.
  104. * The request (the browser) hasn't sent an ``Accept-Encoding`` header
  105. containing ``gzip``.
  106. You can apply GZip compression to individual views using the
  107. :func:`~django.views.decorators.gzip.gzip_page()` decorator.
  108. .. versionchanged:: 1.10
  109. In older versions, Django's CSRF protection mechanism was vulnerable to
  110. BREACH attacks when compression was used. This is no longer the case, but
  111. you should still take care not to compromise your own secrets this way.
  112. Conditional GET middleware
  113. --------------------------
  114. .. module:: django.middleware.http
  115. :synopsis: Middleware handling advanced HTTP features.
  116. .. class:: ConditionalGetMiddleware
  117. Handles conditional GET operations. If the response has a ``ETag`` or
  118. ``Last-Modified`` header, and the request has ``If-None-Match`` or
  119. ``If-Modified-Since``, the response is replaced by an
  120. :class:`~django.http.HttpResponseNotModified`.
  121. Also sets the ``Date`` and ``Content-Length`` response-headers.
  122. Locale middleware
  123. -----------------
  124. .. module:: django.middleware.locale
  125. :synopsis: Middleware to enable language selection based on the request.
  126. .. class:: LocaleMiddleware
  127. Enables language selection based on data from the request. It customizes
  128. content for each user. See the :doc:`internationalization documentation
  129. </topics/i18n/translation>`.
  130. .. attribute:: LocaleMiddleware.response_redirect_class
  131. Defaults to :class:`~django.http.HttpResponseRedirect`. Subclass
  132. ``LocaleMiddleware`` and override the attribute to customize the redirects
  133. issued by the middleware.
  134. Message middleware
  135. ------------------
  136. .. module:: django.contrib.messages.middleware
  137. :synopsis: Message middleware.
  138. .. class:: MessageMiddleware
  139. Enables cookie- and session-based message support. See the
  140. :doc:`messages documentation </ref/contrib/messages>`.
  141. .. _security-middleware:
  142. Security middleware
  143. -------------------
  144. .. module:: django.middleware.security
  145. :synopsis: Security middleware.
  146. .. warning::
  147. If your deployment situation allows, it's usually a good idea to have your
  148. front-end Web server perform the functionality provided by the
  149. ``SecurityMiddleware``. That way, if there are requests that aren't served
  150. by Django (such as static media or user-uploaded files), they will have
  151. the same protections as requests to your Django application.
  152. .. class:: SecurityMiddleware
  153. The ``django.middleware.security.SecurityMiddleware`` provides several security
  154. enhancements to the request/response cycle. Each one can be independently
  155. enabled or disabled with a setting.
  156. * :setting:`SECURE_BROWSER_XSS_FILTER`
  157. * :setting:`SECURE_CONTENT_TYPE_NOSNIFF`
  158. * :setting:`SECURE_HSTS_INCLUDE_SUBDOMAINS`
  159. * :setting:`SECURE_HSTS_PRELOAD`
  160. * :setting:`SECURE_HSTS_SECONDS`
  161. * :setting:`SECURE_REDIRECT_EXEMPT`
  162. * :setting:`SECURE_SSL_HOST`
  163. * :setting:`SECURE_SSL_REDIRECT`
  164. .. _http-strict-transport-security:
  165. HTTP Strict Transport Security
  166. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  167. For sites that should only be accessed over HTTPS, you can instruct modern
  168. browsers to refuse to connect to your domain name via an insecure connection
  169. (for a given period of time) by setting the `"Strict-Transport-Security"
  170. header`_. This reduces your exposure to some SSL-stripping man-in-the-middle
  171. (MITM) attacks.
  172. ``SecurityMiddleware`` will set this header for you on all HTTPS responses if
  173. you set the :setting:`SECURE_HSTS_SECONDS` setting to a non-zero integer value.
  174. When enabling HSTS, it's a good idea to first use a small value for testing,
  175. for example, :setting:`SECURE_HSTS_SECONDS = 3600<SECURE_HSTS_SECONDS>` for one
  176. hour. Each time a Web browser sees the HSTS header from your site, it will
  177. refuse to communicate non-securely (using HTTP) with your domain for the given
  178. period of time. Once you confirm that all assets are served securely on your
  179. site (i.e. HSTS didn't break anything), it's a good idea to increase this value
  180. so that infrequent visitors will be protected (31536000 seconds, i.e. 1 year,
  181. is common).
  182. Additionally, if you set the :setting:`SECURE_HSTS_INCLUDE_SUBDOMAINS` setting
  183. to ``True``, ``SecurityMiddleware`` will add the ``includeSubDomains`` directive
  184. to the ``Strict-Transport-Security`` header. This is recommended (assuming all
  185. subdomains are served exclusively using HTTPS), otherwise your site may still
  186. be vulnerable via an insecure connection to a subdomain.
  187. If you wish to submit your site to the `browser preload list`_, set the
  188. :setting:`SECURE_HSTS_PRELOAD` setting to ``True``. That appends the
  189. ``preload`` directive to the ``Strict-Transport-Security`` header.
  190. .. warning::
  191. The HSTS policy applies to your entire domain, not just the URL of the
  192. response that you set the header on. Therefore, you should only use it if
  193. your entire domain is served via HTTPS only.
  194. Browsers properly respecting the HSTS header will refuse to allow users to
  195. bypass warnings and connect to a site with an expired, self-signed, or
  196. otherwise invalid SSL certificate. If you use HSTS, make sure your
  197. certificates are in good shape and stay that way!
  198. .. note::
  199. If you are deployed behind a load-balancer or reverse-proxy server, and the
  200. ``Strict-Transport-Security`` header is not being added to your responses,
  201. it may be because Django doesn't realize that it's on a secure connection;
  202. you may need to set the :setting:`SECURE_PROXY_SSL_HEADER` setting.
  203. .. _"Strict-Transport-Security" header: https://en.wikipedia.org/wiki/Strict_Transport_Security
  204. .. _browser preload list: https://hstspreload.appspot.com/
  205. .. _x-content-type-options:
  206. ``X-Content-Type-Options: nosniff``
  207. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  208. Some browsers will try to guess the content types of the assets that they
  209. fetch, overriding the ``Content-Type`` header. While this can help display
  210. sites with improperly configured servers, it can also pose a security
  211. risk.
  212. If your site serves user-uploaded files, a malicious user could upload a
  213. specially-crafted file that would be interpreted as HTML or JavaScript by
  214. the browser when you expected it to be something harmless.
  215. To learn more about this header and how the browser treats it, you can
  216. read about it on the `IE Security Blog`_.
  217. To prevent the browser from guessing the content type and force it to
  218. always use the type provided in the ``Content-Type`` header, you can pass
  219. the ``X-Content-Type-Options: nosniff`` header. ``SecurityMiddleware`` will
  220. do this for all responses if the :setting:`SECURE_CONTENT_TYPE_NOSNIFF` setting
  221. is ``True``.
  222. Note that in most deployment situations where Django isn't involved in serving
  223. user-uploaded files, this setting won't help you. For example, if your
  224. :setting:`MEDIA_URL` is served directly by your front-end Web server (nginx,
  225. Apache, etc.) then you'd want to set this header there. On the other hand, if
  226. you are using Django to do something like require authorization in order to
  227. download files and you cannot set the header using your Web server, this
  228. setting will be useful.
  229. .. _IE Security Blog: http://blogs.msdn.com/b/ie/archive/2008/09/02/ie8-security-part-vi-beta-2-update.aspx
  230. .. _x-xss-protection:
  231. ``X-XSS-Protection: 1; mode=block``
  232. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  233. Some browsers have the ability to block content that appears to be an `XSS
  234. attack`_. They work by looking for JavaScript content in the GET or POST
  235. parameters of a page. If the JavaScript is replayed in the server's response,
  236. the page is blocked from rendering and an error page is shown instead.
  237. The `X-XSS-Protection header`_ is used to control the operation of the
  238. XSS filter.
  239. To enable the XSS filter in the browser, and force it to always block
  240. suspected XSS attacks, you can pass the ``X-XSS-Protection: 1; mode=block``
  241. header. ``SecurityMiddleware`` will do this for all responses if the
  242. :setting:`SECURE_BROWSER_XSS_FILTER` setting is ``True``.
  243. .. warning::
  244. The browser XSS filter is a useful defense measure, but must not be
  245. relied upon exclusively. It cannot detect all XSS attacks and not all
  246. browsers support the header. Ensure you are still :ref:`validating and
  247. sanitizing <cross-site-scripting>` all input to prevent XSS attacks.
  248. .. _XSS attack: https://en.wikipedia.org/wiki/Cross-site_scripting
  249. .. _X-XSS-Protection header: http://blogs.msdn.com/b/ie/archive/2008/07/02/ie8-security-part-iv-the-xss-filter.aspx
  250. .. _ssl-redirect:
  251. SSL Redirect
  252. ~~~~~~~~~~~~
  253. If your site offers both HTTP and HTTPS connections, most users will end up
  254. with an unsecured connection by default. For best security, you should redirect
  255. all HTTP connections to HTTPS.
  256. If you set the :setting:`SECURE_SSL_REDIRECT` setting to True,
  257. ``SecurityMiddleware`` will permanently (HTTP 301) redirect all HTTP
  258. connections to HTTPS.
  259. .. note::
  260. For performance reasons, it's preferable to do these redirects outside of
  261. Django, in a front-end load balancer or reverse-proxy server such as
  262. `nginx`_. :setting:`SECURE_SSL_REDIRECT` is intended for the deployment
  263. situations where this isn't an option.
  264. If the :setting:`SECURE_SSL_HOST` setting has a value, all redirects will be
  265. sent to that host instead of the originally-requested host.
  266. If there are a few pages on your site that should be available over HTTP, and
  267. not redirected to HTTPS, you can list regular expressions to match those URLs
  268. in the :setting:`SECURE_REDIRECT_EXEMPT` setting.
  269. .. note::
  270. If you are deployed behind a load-balancer or reverse-proxy server and
  271. Django can't seem to tell when a request actually is already secure, you
  272. may need to set the :setting:`SECURE_PROXY_SSL_HEADER` setting.
  273. .. _nginx: http://nginx.org
  274. Session middleware
  275. ------------------
  276. .. module:: django.contrib.sessions.middleware
  277. :synopsis: Session middleware.
  278. .. class:: SessionMiddleware
  279. Enables session support. See the :doc:`session documentation
  280. </topics/http/sessions>`.
  281. Site middleware
  282. ---------------
  283. .. module:: django.contrib.sites.middleware
  284. :synopsis: Site middleware.
  285. .. class:: CurrentSiteMiddleware
  286. Adds the ``site`` attribute representing the current site to every incoming
  287. ``HttpRequest`` object. See the :ref:`sites documentation <site-middleware>`.
  288. Authentication middleware
  289. -------------------------
  290. .. module:: django.contrib.auth.middleware
  291. :synopsis: Authentication middleware.
  292. .. class:: AuthenticationMiddleware
  293. Adds the ``user`` attribute, representing the currently-logged-in user, to
  294. every incoming ``HttpRequest`` object. See :ref:`Authentication in Web requests
  295. <auth-web-requests>`.
  296. .. class:: RemoteUserMiddleware
  297. Middleware for utilizing Web server provided authentication. See
  298. :doc:`/howto/auth-remote-user` for usage details.
  299. .. class:: PersistentRemoteUserMiddleware
  300. Middleware for utilizing Web server provided authentication when enabled only
  301. on the login page. See :ref:`persistent-remote-user-middleware-howto` for usage
  302. details.
  303. CSRF protection middleware
  304. --------------------------
  305. .. module:: django.middleware.csrf
  306. :synopsis: Middleware adding protection against Cross Site Request
  307. Forgeries.
  308. .. class:: CsrfViewMiddleware
  309. Adds protection against Cross Site Request Forgeries by adding hidden form
  310. fields to POST forms and checking requests for the correct value. See the
  311. :doc:`Cross Site Request Forgery protection documentation </ref/csrf>`.
  312. ``X-Frame-Options`` middleware
  313. ------------------------------
  314. .. module:: django.middleware.clickjacking
  315. :synopsis: Clickjacking protection
  316. .. class:: XFrameOptionsMiddleware
  317. Simple :doc:`clickjacking protection via the X-Frame-Options header </ref/clickjacking/>`.
  318. .. _middleware-ordering:
  319. Middleware ordering
  320. ===================
  321. Here are some hints about the ordering of various Django middleware classes:
  322. #. :class:`~django.middleware.security.SecurityMiddleware`
  323. It should go near the top of the list if you're going to turn on the SSL
  324. redirect as that avoids running through a bunch of other unnecessary
  325. middleware.
  326. #. :class:`~django.middleware.cache.UpdateCacheMiddleware`
  327. Before those that modify the ``Vary`` header (``SessionMiddleware``,
  328. ``GZipMiddleware``, ``LocaleMiddleware``).
  329. #. :class:`~django.middleware.gzip.GZipMiddleware`
  330. Before any middleware that may change or use the response body.
  331. After ``UpdateCacheMiddleware``: Modifies ``Vary`` header.
  332. #. :class:`~django.middleware.http.ConditionalGetMiddleware`
  333. Before ``CommonMiddleware``: uses its ``Etag`` header when
  334. :setting:`USE_ETAGS` = ``True``.
  335. #. :class:`~django.contrib.sessions.middleware.SessionMiddleware`
  336. After ``UpdateCacheMiddleware``: Modifies ``Vary`` header.
  337. #. :class:`~django.middleware.locale.LocaleMiddleware`
  338. One of the topmost, after ``SessionMiddleware`` (uses session data) and
  339. ``UpdateCacheMiddleware`` (modifies ``Vary`` header).
  340. #. :class:`~django.middleware.common.CommonMiddleware`
  341. Before any middleware that may change the response (it calculates ``ETags``).
  342. After ``GZipMiddleware`` so it won't calculate an ``ETag`` header on gzipped
  343. contents.
  344. Close to the top: it redirects when :setting:`APPEND_SLASH` or
  345. :setting:`PREPEND_WWW` are set to ``True``.
  346. #. :class:`~django.middleware.csrf.CsrfViewMiddleware`
  347. Before any view middleware that assumes that CSRF attacks have been dealt
  348. with.
  349. #. :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`
  350. After ``SessionMiddleware``: uses session storage.
  351. #. :class:`~django.contrib.messages.middleware.MessageMiddleware`
  352. After ``SessionMiddleware``: can use session-based storage.
  353. #. :class:`~django.middleware.cache.FetchFromCacheMiddleware`
  354. After any middleware that modifies the ``Vary`` header: that header is used
  355. to pick a value for the cache hash-key.
  356. #. :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware`
  357. Should be near the bottom as it's a last-resort type of middleware.
  358. #. :class:`~django.contrib.redirects.middleware.RedirectFallbackMiddleware`
  359. Should be near the bottom as it's a last-resort type of middleware.