security.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. ==========================
  2. Django's security policies
  3. ==========================
  4. Django's development team is strongly committed to responsible
  5. reporting and disclosure of security-related issues. As such, we've
  6. adopted and follow a set of policies which conform to that ideal and
  7. are geared toward allowing us to deliver timely security updates to
  8. the official distribution of Django, as well as to third-party
  9. distributions.
  10. .. _reporting-security-issues:
  11. Reporting security issues
  12. =========================
  13. **Short version: please report security issues by emailing
  14. security@djangoproject.com**.
  15. Most normal bugs in Django are reported to `our public Trac instance`_, but
  16. due to the sensitive nature of security issues, we ask that they **not** be
  17. publicly reported in this fashion.
  18. Instead, if you believe you've found something in Django which has security
  19. implications, please send a description of the issue via email to
  20. ``security@djangoproject.com``. Mail sent to that address reaches the `security
  21. team <https://www.djangoproject.com/foundation/teams/#security-team>`_.
  22. Once you've submitted an issue via email, you should receive an acknowledgment
  23. from a member of the security team within 48 hours, and depending on the
  24. action to be taken, you may receive further followup emails.
  25. .. admonition:: Sending encrypted reports
  26. If you want to send an encrypted email (*optional*), the public key ID for
  27. ``security@djangoproject.com`` is ``0xfcb84b8d1d17f80b``, and this public
  28. key is available from most commonly-used keyservers.
  29. .. _our public Trac instance: https://code.djangoproject.com/query
  30. .. _security-report-evaluation:
  31. How does Django evaluate a report
  32. =================================
  33. These are criteria used by the security team when evaluating whether a report
  34. requires a security release:
  35. * The vulnerability is within a :ref:`supported version <security-support>` of
  36. Django.
  37. * The vulnerability does not depend on manual actions that rely on code
  38. external to Django. This includes actions performed by a project's developer
  39. or maintainer using developer tools or the Django CLI. For example, attacks
  40. that require running management commands with uncommon or insecure options
  41. do not qualify.
  42. * The vulnerability applies to a production-grade Django application. This
  43. means the following scenarios do not require a security release:
  44. * Exploits that only affect local development, for example when using
  45. :djadmin:`runserver`.
  46. * Exploits which fail to follow security best practices, such as failure to
  47. sanitize user input. For other examples, see our :ref:`security
  48. documentation <cross-site-scripting>`.
  49. * Exploits in AI generated code that do not adhere to security best practices.
  50. The security team may conclude that the source of the vulnerability is within
  51. the Python standard library, in which case the reporter will be asked to report
  52. the vulnerability to the Python core team. For further details see the `Python
  53. security guidelines <https://www.python.org/dev/security/>`_.
  54. On occasion, a security release may be issued to help resolve a security
  55. vulnerability within a popular third-party package. These reports should come
  56. from the package maintainers.
  57. If you are unsure whether your finding meets these criteria, please still report
  58. it :ref:`privately by emailing security@djangoproject.com
  59. <reporting-security-issues>`. The security team will review your report and
  60. recommend the correct course of action.
  61. .. _security-support:
  62. Supported versions
  63. ==================
  64. At any given time, the Django team provides official security support
  65. for several versions of Django:
  66. * The `main development branch`_, hosted on GitHub, which will become the
  67. next major release of Django, receives security support. Security issues that
  68. only affect the main development branch and not any stable released versions
  69. are fixed in public without going through the :ref:`disclosure process
  70. <security-disclosure>`.
  71. * The two most recent Django release series receive security
  72. support. For example, during the development cycle leading to the
  73. release of Django 1.5, support will be provided for Django 1.4 and
  74. Django 1.3. Upon the release of Django 1.5, Django 1.3's security
  75. support will end.
  76. * :term:`Long-term support release`\s will receive security updates for a
  77. specified period.
  78. When new releases are issued for security reasons, the accompanying
  79. notice will include a list of affected versions. This list is
  80. comprised solely of *supported* versions of Django: older versions may
  81. also be affected, but we do not investigate to determine that, and
  82. will not issue patches or new releases for those versions.
  83. .. _main development branch: https://github.com/django/django/
  84. .. _security-disclosure:
  85. How Django discloses security issues
  86. ====================================
  87. Our process for taking a security issue from private discussion to
  88. public disclosure involves multiple steps.
  89. Approximately one week before public disclosure, we send two notifications:
  90. First, we notify |django-announce| of the date and approximate time of the
  91. upcoming security release, as well as the severity of the issues. This is to
  92. aid organizations that need to ensure they have staff available to handle
  93. triaging our announcement and upgrade Django as needed. Severity levels are:
  94. * **High**
  95. * Remote code execution
  96. * SQL injection
  97. * **Moderate**
  98. * Cross site scripting (XSS)
  99. * Cross site request forgery (CSRF)
  100. * Denial-of-service attacks
  101. * Broken authentication
  102. * **Low**
  103. * Sensitive data exposure
  104. * Broken session management
  105. * Unvalidated redirects/forwards
  106. * Issues requiring an uncommon configuration option
  107. Second, we notify a list of :ref:`people and organizations
  108. <security-notifications>`, primarily composed of operating-system vendors and
  109. other distributors of Django. This email is signed with the PGP key of someone
  110. from `Django's release team`_ and consists of:
  111. * A full description of the issue and the affected versions of Django.
  112. * The steps we will be taking to remedy the issue.
  113. * The patch(es), if any, that will be applied to Django.
  114. * The date on which the Django team will apply these patches, issue
  115. new releases and publicly disclose the issue.
  116. On the day of disclosure, we will take the following steps:
  117. #. Apply the relevant patch(es) to Django's codebase.
  118. #. Issue the relevant release(s), by placing new packages on the :pypi:`Python
  119. Package Index <Django>` and on the `djangoproject.com website
  120. <https://www.djangoproject.com/download/>`_, and tagging the new release(s)
  121. in Django's git repository.
  122. #. Post a public entry on `the official Django development blog`_,
  123. describing the issue and its resolution in detail, pointing to the
  124. relevant patches and new releases, and crediting the reporter of
  125. the issue (if the reporter wishes to be publicly identified).
  126. #. Post a notice to the |django-announce| and oss-security@lists.openwall.com
  127. mailing lists that links to the blog post.
  128. .. _the official Django development blog: https://www.djangoproject.com/weblog/
  129. If a reported issue is believed to be particularly time-sensitive --
  130. due to a known exploit in the wild, for example -- the time between
  131. advance notification and public disclosure may be shortened
  132. considerably.
  133. Additionally, if we have reason to believe that an issue reported to
  134. us affects other frameworks or tools in the Python/web ecosystem, we
  135. may privately contact and discuss those issues with the appropriate
  136. maintainers, and coordinate our own disclosure and resolution with
  137. theirs.
  138. The Django team also maintains an :doc:`archive of security issues
  139. disclosed in Django</releases/security>`.
  140. .. _Django's release team: https://www.djangoproject.com/foundation/teams/#releasers-team
  141. .. _security-notifications:
  142. Who receives advance notification
  143. =================================
  144. The full list of people and organizations who receive advance
  145. notification of security issues is not and will not be made public.
  146. We also aim to keep this list as small as effectively possible, in
  147. order to better manage the flow of confidential information prior to
  148. disclosure. As such, our notification list is *not* simply a list of
  149. users of Django, and being a user of Django is not sufficient reason
  150. to be placed on the notification list.
  151. In broad terms, recipients of security notifications fall into three
  152. groups:
  153. 1. Operating-system vendors and other distributors of Django who
  154. provide a suitably-generic (i.e., *not* an individual's personal
  155. email address) contact address for reporting issues with their
  156. Django package, or for general security reporting. In either case,
  157. such addresses **must not** forward to public mailing lists or bug
  158. trackers. Addresses which forward to the private email of an
  159. individual maintainer or security-response contact are acceptable,
  160. although private security trackers or security-response groups are
  161. strongly preferred.
  162. 2. On a case-by-case basis, individual package maintainers who have
  163. demonstrated a commitment to responding to and responsibly acting
  164. on these notifications.
  165. 3. On a case-by-case basis, other entities who, in the judgment of the
  166. Django development team, need to be made aware of a pending
  167. security issue. Typically, membership in this group will consist of
  168. some of the largest and/or most likely to be severely impacted
  169. known users or distributors of Django, and will require a
  170. demonstrated ability to responsibly receive, keep confidential and
  171. act on these notifications.
  172. .. admonition:: Security audit and scanning entities
  173. As a policy, we do not add these types of entities to the notification
  174. list.
  175. Requesting notifications
  176. ========================
  177. If you believe that you, or an organization you are authorized to
  178. represent, fall into one of the groups listed above, you can ask to be
  179. added to Django's notification list by emailing
  180. ``security@djangoproject.com``. Please use the subject line "Security
  181. notification request".
  182. Your request **must** include the following information:
  183. * Your full, real name and the name of the organization you represent,
  184. if applicable, as well as your role within that organization.
  185. * A detailed explanation of how you or your organization fit at least
  186. one set of criteria listed above.
  187. * A detailed explanation of why you are requesting security notifications.
  188. Again, please keep in mind that this is *not* simply a list for users of
  189. Django, and the overwhelming majority of users should subscribe to
  190. |django-announce| to receive advanced notice of when a security release will
  191. happen, without the details of the issues, rather than request detailed
  192. notifications.
  193. * The email address you would like to have added to our notification
  194. list.
  195. * An explanation of who will be receiving/reviewing mail sent to that
  196. address, as well as information regarding any automated actions that
  197. will be taken (i.e., filing of a confidential issue in a bug
  198. tracker).
  199. * For individuals, the ID of a public key associated with your address
  200. which can be used to verify email received from you and encrypt
  201. email sent to you, as needed.
  202. Once submitted, your request will be considered by the Django
  203. development team; you will receive a reply notifying you of the result
  204. of your request within 30 days.
  205. Please also bear in mind that for any individual or organization,
  206. receiving security notifications is a privilege granted at the sole
  207. discretion of the Django development team, and that this privilege can
  208. be revoked at any time, with or without explanation.
  209. .. admonition:: Provide all required information
  210. A failure to provide the required information in your initial contact
  211. will count against you when making the decision on whether or not to
  212. approve your request.