middleware.txt 20 KB

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