security.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. ==================
  2. Security in Django
  3. ==================
  4. This document is an overview of Django's security features. It includes advice
  5. on securing a Django-powered site.
  6. .. _cross-site-scripting:
  7. Cross site scripting (XSS) protection
  8. =====================================
  9. XSS attacks allow a user to inject client side scripts into the browsers of
  10. other users. This is usually achieved by storing the malicious scripts in the
  11. database where it will be retrieved and displayed to other users, or by getting
  12. users to click a link which will cause the attacker's JavaScript to be executed
  13. by the user's browser. However, XSS attacks can originate from any untrusted
  14. source of data, such as cookies or web services, whenever the data is not
  15. sufficiently sanitized before including in a page.
  16. Using Django templates protects you against the majority of XSS attacks.
  17. However, it is important to understand what protections it provides
  18. and its limitations.
  19. Django templates :ref:`escape specific characters <automatic-html-escaping>`
  20. which are particularly dangerous to HTML. While this protects users from most
  21. malicious input, it is not entirely foolproof. For example, it will not
  22. protect the following:
  23. .. code-block:: text
  24. <style class={{ var }}>...</style>
  25. .. highlighting as html+django fails due to intentionally missing quotes.
  26. If ``var`` is set to ``'class1 onmouseover=javascript:func()'``, this can result
  27. in unauthorized JavaScript execution, depending on how the browser renders
  28. imperfect HTML. (Quoting the attribute value would fix this case.)
  29. It is also important to be particularly careful when using ``is_safe`` with
  30. custom template tags, the :tfilter:`safe` template tag, :mod:`mark_safe
  31. <django.utils.safestring>`, and when autoescape is turned off.
  32. In addition, if you are using the template system to output something other
  33. than HTML, there may be entirely separate characters and words which require
  34. escaping.
  35. You should also be very careful when storing HTML in the database, especially
  36. when that HTML is retrieved and displayed.
  37. Cross site request forgery (CSRF) protection
  38. ============================================
  39. CSRF attacks allow a malicious user to execute actions using the credentials
  40. of another user without that user's knowledge or consent.
  41. Django has built-in protection against most types of CSRF attacks, providing you
  42. have :ref:`enabled and used it <using-csrf>` where appropriate. However, as with
  43. any mitigation technique, there are limitations. For example, it is possible to
  44. disable the CSRF module globally or for particular views. You should only do
  45. this if you know what you are doing. There are other :ref:`limitations
  46. <csrf-limitations>` if your site has subdomains that are outside of your
  47. control.
  48. :ref:`CSRF protection works <how-csrf-works>` by checking for a secret in each
  49. POST request. This ensures that a malicious user cannot "replay" a form POST to
  50. your website and have another logged in user unwittingly submit that form. The
  51. malicious user would have to know the secret, which is user specific (using a
  52. cookie).
  53. When deployed with :ref:`HTTPS <security-recommendation-ssl>`,
  54. ``CsrfViewMiddleware`` will check that the HTTP referer header is set to a
  55. URL on the same origin (including subdomain and port). Because HTTPS
  56. provides additional security, it is imperative to ensure connections use HTTPS
  57. where it is available by forwarding insecure connection requests and using
  58. HSTS for supported browsers.
  59. Be very careful with marking views with the ``csrf_exempt`` decorator unless
  60. it is absolutely necessary.
  61. .. _sql-injection-protection:
  62. SQL injection protection
  63. ========================
  64. SQL injection is a type of attack where a malicious user is able to execute
  65. arbitrary SQL code on a database. This can result in records
  66. being deleted or data leakage.
  67. Django's querysets are protected from SQL injection since their queries are
  68. constructed using query parameterization. A query's SQL code is defined
  69. separately from the query's parameters. Since parameters may be user-provided
  70. and therefore unsafe, they are escaped by the underlying database driver.
  71. Django also gives developers power to write :ref:`raw queries
  72. <executing-raw-queries>` or execute :ref:`custom sql <executing-custom-sql>`.
  73. These capabilities should be used sparingly and you should always be careful to
  74. properly escape any parameters that the user can control. In addition, you
  75. should exercise caution when using :meth:`~django.db.models.query.QuerySet.extra`
  76. and :class:`~django.db.models.expressions.RawSQL`.
  77. Clickjacking protection
  78. =======================
  79. Clickjacking is a type of attack where a malicious site wraps another site
  80. in a frame. This attack can result in an unsuspecting user being tricked
  81. into performing unintended actions on the target site.
  82. Django contains :ref:`clickjacking protection <clickjacking-prevention>` in
  83. the form of the
  84. :mod:`X-Frame-Options middleware <django.middleware.clickjacking.XFrameOptionsMiddleware>`
  85. which in a supporting browser can prevent a site from being rendered inside
  86. a frame. It is possible to disable the protection on a per view basis
  87. or to configure the exact header value sent.
  88. The middleware is strongly recommended for any site that does not need to have
  89. its pages wrapped in a frame by third party sites, or only needs to allow that
  90. for a small section of the site.
  91. .. _security-recommendation-ssl:
  92. SSL/HTTPS
  93. =========
  94. It is always better for security to deploy your site behind HTTPS. Without
  95. this, it is possible for malicious network users to sniff authentication
  96. credentials or any other information transferred between client and server, and
  97. in some cases -- **active** network attackers -- to alter data that is sent in
  98. either direction.
  99. If you want the protection that HTTPS provides, and have enabled it on your
  100. server, there are some additional steps you may need:
  101. * If necessary, set :setting:`SECURE_PROXY_SSL_HEADER`, ensuring that you have
  102. understood the warnings there thoroughly. Failure to do this can result
  103. in CSRF vulnerabilities, and failure to do it correctly can also be
  104. dangerous!
  105. * Set :setting:`SECURE_SSL_REDIRECT` to ``True``, so that requests over HTTP
  106. are redirected to HTTPS.
  107. Please note the caveats under :setting:`SECURE_PROXY_SSL_HEADER`. For the
  108. case of a reverse proxy, it may be easier or more secure to configure the
  109. main web server to do the redirect to HTTPS.
  110. * Use 'secure' cookies.
  111. If a browser connects initially via HTTP, which is the default for most
  112. browsers, it is possible for existing cookies to be leaked. For this reason,
  113. you should set your :setting:`SESSION_COOKIE_SECURE` and
  114. :setting:`CSRF_COOKIE_SECURE` settings to ``True``. This instructs the browser
  115. to only send these cookies over HTTPS connections. Note that this will mean
  116. that sessions will not work over HTTP, and the CSRF protection will prevent
  117. any POST data being accepted over HTTP (which will be fine if you are
  118. redirecting all HTTP traffic to HTTPS).
  119. * Use :ref:`http-strict-transport-security` (HSTS)
  120. HSTS is an HTTP header that informs a browser that all future connections
  121. to a particular site should always use HTTPS. Combined with redirecting
  122. requests over HTTP to HTTPS, this will ensure that connections always enjoy
  123. the added security of SSL provided one successful connection has occurred.
  124. HSTS may either be configured with :setting:`SECURE_HSTS_SECONDS`,
  125. :setting:`SECURE_HSTS_INCLUDE_SUBDOMAINS`, and :setting:`SECURE_HSTS_PRELOAD`,
  126. or on the web server.
  127. .. _host-headers-virtual-hosting:
  128. Host header validation
  129. ======================
  130. Django uses the ``Host`` header provided by the client to construct URLs in
  131. certain cases. While these values are sanitized to prevent Cross Site Scripting
  132. attacks, a fake ``Host`` value can be used for Cross-Site Request Forgery,
  133. cache poisoning attacks, and poisoning links in emails.
  134. Because even seemingly-secure web server configurations are susceptible to fake
  135. ``Host`` headers, Django validates ``Host`` headers against the
  136. :setting:`ALLOWED_HOSTS` setting in the
  137. :meth:`django.http.HttpRequest.get_host()` method.
  138. This validation only applies via :meth:`~django.http.HttpRequest.get_host()`;
  139. if your code accesses the ``Host`` header directly from ``request.META`` you
  140. are bypassing this security protection.
  141. For more details see the full :setting:`ALLOWED_HOSTS` documentation.
  142. .. warning::
  143. Previous versions of this document recommended configuring your web server to
  144. ensure it validates incoming HTTP ``Host`` headers. While this is still
  145. recommended, in many common web servers a configuration that seems to
  146. validate the ``Host`` header may not in fact do so. For instance, even if
  147. Apache is configured such that your Django site is served from a non-default
  148. virtual host with the ``ServerName`` set, it is still possible for an HTTP
  149. request to match this virtual host and supply a fake ``Host`` header. Thus,
  150. Django now requires that you set :setting:`ALLOWED_HOSTS` explicitly rather
  151. than relying on web server configuration.
  152. Additionally, Django requires you to explicitly enable support for the
  153. ``X-Forwarded-Host`` header (via the :setting:`USE_X_FORWARDED_HOST` setting)
  154. if your configuration requires it.
  155. Referrer policy
  156. ===============
  157. Browsers use the ``Referer`` header as a way to send information to a site
  158. about how users got there. By setting a *Referrer Policy* you can help to
  159. protect the privacy of your users, restricting under which circumstances the
  160. ``Referer`` header is set. See :ref:`the referrer policy section of the
  161. security middleware reference <referrer-policy>` for details.
  162. Cross-origin opener policy
  163. ==========================
  164. The cross-origin opener policy (COOP) header allows browsers to isolate a
  165. top-level window from other documents by putting them in a different context
  166. group so that they cannot directly interact with the top-level window. If a
  167. document protected by COOP opens a cross-origin popup window, the popup’s
  168. ``window.opener`` property will be ``null``. COOP protects against cross-origin
  169. attacks. See :ref:`the cross-origin opener policy section of the security
  170. middleware reference <cross-origin-opener-policy>` for details.
  171. Session security
  172. ================
  173. Similar to the :ref:`CSRF limitations <csrf-limitations>` requiring a site to
  174. be deployed such that untrusted users don't have access to any subdomains,
  175. :mod:`django.contrib.sessions` also has limitations. See :ref:`the session
  176. topic guide section on security <topics-session-security>` for details.
  177. .. _user-uploaded-content-security:
  178. User-uploaded content
  179. =====================
  180. .. note::
  181. Consider :ref:`serving static files from a cloud service or CDN
  182. <staticfiles-from-cdn>` to avoid some of these issues.
  183. * If your site accepts file uploads, it is strongly advised that you limit
  184. these uploads in your web server configuration to a reasonable
  185. size in order to prevent denial of service (DOS) attacks. In Apache, this
  186. can be easily set using the LimitRequestBody_ directive.
  187. * If you are serving your own static files, be sure that handlers like Apache's
  188. ``mod_php``, which would execute static files as code, are disabled. You don't
  189. want users to be able to execute arbitrary code by uploading and requesting a
  190. specially crafted file.
  191. * Django's media upload handling poses some vulnerabilities when that media is
  192. served in ways that do not follow security best practices. Specifically, an
  193. HTML file can be uploaded as an image if that file contains a valid PNG
  194. header followed by malicious HTML. This file will pass verification of the
  195. library that Django uses for :class:`~django.db.models.ImageField` image
  196. processing (Pillow). When this file is subsequently displayed to a
  197. user, it may be displayed as HTML depending on the type and configuration of
  198. your web server.
  199. No bulletproof technical solution exists at the framework level to safely
  200. validate all user uploaded file content, however, there are some other steps
  201. you can take to mitigate these attacks:
  202. #. One class of attacks can be prevented by always serving user uploaded
  203. content from a distinct top-level or second-level domain. This prevents
  204. any exploit blocked by `same-origin policy`_ protections such as cross
  205. site scripting. For example, if your site runs on ``example.com``, you
  206. would want to serve uploaded content (the :setting:`MEDIA_URL` setting)
  207. from something like ``usercontent-example.com``. It's *not* sufficient to
  208. serve content from a subdomain like ``usercontent.example.com``.
  209. #. Beyond this, applications may choose to define a list of allowable
  210. file extensions for user uploaded files and configure the web server
  211. to only serve such files.
  212. .. _same-origin policy: https://en.wikipedia.org/wiki/Same-origin_policy
  213. .. _additional-security-topics:
  214. Additional security topics
  215. ==========================
  216. While Django provides good security protection out of the box, it is still
  217. important to properly deploy your application and take advantage of the
  218. security protection of the web server, operating system and other components.
  219. * Make sure that your Python code is outside of the web server's root. This
  220. will ensure that your Python code is not accidentally served as plain text
  221. (or accidentally executed).
  222. * Take care with any :ref:`user uploaded files <file-upload-security>`.
  223. * Django does not throttle requests to authenticate users. To protect against
  224. brute-force attacks against the authentication system, you may consider
  225. deploying a Django plugin or web server module to throttle these requests.
  226. * Keep your :setting:`SECRET_KEY`, and :setting:`SECRET_KEY_FALLBACKS` if in
  227. use, secret.
  228. * It is a good idea to limit the accessibility of your caching system and
  229. database using a firewall.
  230. * Take a look at the Open Web Application Security Project (OWASP) `Top 10
  231. list`_ which identifies some common vulnerabilities in web applications. While
  232. Django has tools to address some of the issues, other issues must be
  233. accounted for in the design of your project.
  234. * Mozilla discusses various topics regarding `web security`_. Their
  235. pages also include security principles that apply to any system.
  236. .. _LimitRequestBody: https://httpd.apache.org/docs/2.4/mod/core.html#limitrequestbody
  237. .. _Top 10 list: https://owasp.org/Top10/
  238. .. _web security: https://infosec.mozilla.org/guidelines/web_security.html