middleware.txt 17 KB

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