mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed CVE-2023-24580 -- Prevented DoS with too many uploaded files.
Thanks to Jakob Ackermann for the report.
This commit is contained in:
committed by
Carlton Gibson
parent
1eb94bc8da
commit
85ac33591c
@@ -6,4 +6,12 @@ Django 3.2.18 release notes
|
||||
|
||||
Django 3.2.18 fixes a security issue with severity "moderate" in 3.2.17.
|
||||
|
||||
...
|
||||
CVE-2023-24580: Potential denial-of-service vulnerability in file uploads
|
||||
=========================================================================
|
||||
|
||||
Passing certain inputs to multipart forms could result in too many open files
|
||||
or memory exhaustion, and provided a potential vector for a denial-of-service
|
||||
attack.
|
||||
|
||||
The number of files parts parsed is now limited via the new
|
||||
:setting:`DATA_UPLOAD_MAX_NUMBER_FILES` setting.
|
||||
|
||||
Reference in New Issue
Block a user