blob: 281444ecf2a8839b2070a793fc6054f6b7bac56d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
===========================
Django 3.2.15 release notes
===========================
*August 3, 2022*
Django 3.2.15 fixes a security issue with severity "high" in 3.2.14.
CVE-2022-36359: Potential reflected file download vulnerability in ``FileResponse``
===================================================================================
An application may have been vulnerable to a reflected file download (RFD)
attack that sets the Content-Disposition header of a
:class:`~django.http.FileResponse` when the ``filename`` was derived from
user-supplied input. The ``filename`` is now escaped to avoid this possibility.
|