3.2.11.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ===========================
  2. Django 3.2.11 release notes
  3. ===========================
  4. *January 4, 2022*
  5. Django 3.2.11 fixes one security issue with severity "medium" and two security
  6. issues with severity "low" in 3.2.10.
  7. CVE-2021-45115: Denial-of-service possibility in ``UserAttributeSimilarityValidator``
  8. =====================================================================================
  9. :class:`.UserAttributeSimilarityValidator` incurred significant overhead
  10. evaluating submitted password that were artificially large in relative to the
  11. comparison values. On the assumption that access to user registration was
  12. unrestricted this provided a potential vector for a denial-of-service attack.
  13. In order to mitigate this issue, relatively long values are now ignored by
  14. ``UserAttributeSimilarityValidator``.
  15. This issue has severity "medium" according to the :ref:`Django security policy
  16. <security-disclosure>`.
  17. CVE-2021-45116: Potential information disclosure in ``dictsort`` template filter
  18. ================================================================================
  19. Due to leveraging the Django Template Language's variable resolution logic, the
  20. :tfilter:`dictsort` template filter was potentially vulnerable to information
  21. disclosure or unintended method calls, if passed a suitably crafted key.
  22. In order to avoid this possibility, ``dictsort`` now works with a restricted
  23. resolution logic, that will not call methods, nor allow indexing on
  24. dictionaries.
  25. As a reminder, all untrusted user input should be validated before use.
  26. This issue has severity "low" according to the :ref:`Django security policy
  27. <security-disclosure>`.