mirror of
https://github.com/django/django.git
synced 2024-11-24 02:47:35 +01:00
8c660fb592
The parsed values of Accept-Language headers are cached in order to avoid repetitive parsing. This leads to a potential denial-of-service vector via excessive memory usage if the raw value of Accept-Language headers is very large. Accept-Language headers are now limited to a maximum length in order to avoid this issue.
18 lines
649 B
Plaintext
18 lines
649 B
Plaintext
===========================
|
|
Django 3.2.17 release notes
|
|
===========================
|
|
|
|
*February 1, 2023*
|
|
|
|
Django 3.2.17 fixes a security issue with severity "moderate" in 3.2.16.
|
|
|
|
CVE-2023-23969: Potential denial-of-service via ``Accept-Language`` headers
|
|
===========================================================================
|
|
|
|
The parsed values of ``Accept-Language`` headers are cached in order to avoid
|
|
repetitive parsing. This leads to a potential denial-of-service vector via
|
|
excessive memory usage if large header values are sent.
|
|
|
|
In order to avoid this vulnerability, the ``Accept-Language`` header is now
|
|
parsed up to a maximum length.
|