middleware.txt 19 KB

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