May 3, 2023
Django 3.2.19 fixes a security issue with severity "low" in 3.2.18.
Uploading multiple files using one form field has never been supported by
forms.FileField
or forms.ImageField
as only the last
uploaded file was validated. Unfortunately, 上传多个文件
topic suggested otherwise.
In order to avoid the vulnerability, ClearableFileInput
and FileInput
form widgets now raise ValueError
when
the multiple
HTML attribute is set on them. To prevent the exception and
keep the old behavior, set allow_multiple_selected
to True
.
For more details on using the new attribute and handling of multiple files through a single field, see 上传多个文件.
5月 12, 2023