2018年3月6日
Django 2.0.3 では、2.0.2 にあった2つのセキュリティの問題と、いくつかのバグを修正しました。また、Transifex の最新の翻訳文字列も組み込まれました。
urlize
と urlizetrunc
テンプレートフィルタにおける DoS 攻撃の可能性¶The django.utils.html.urlize()
function was extremely slow to evaluate
certain inputs due to catastrophic backtracking vulnerabilities in two regular
expressions. The urlize()
function is used to implement the urlize
and
urlizetrunc
template filters, which were thus vulnerable.
The problematic regular expressions are replaced with parsing logic that behaves similarly.
truncatechars_html
and truncatewords_html
template filters¶If django.utils.text.Truncator
's chars()
and words()
methods were
passed the html=True
argument, they were extremely slow to evaluate certain
inputs due to a catastrophic backtracking vulnerability in a regular
expression. The chars()
and words()
methods are used to implement the
truncatechars_html
and truncatewords_html
template filters, which were
thus vulnerable.
The backtracking problem in the regular expression is fixed.
QuerySet.distinct().order_by()
followed by count()
to crash (#29108).%f
for the Thai
locale to fix the admin time picker widget displaying "undefined"
(#29109).QuerySet.order_by(Exists(...))
(#29118).Q.deconstruct()
deterministic with multiple keyword arguments
(#29125). You may need to modify Q
's in existing migrations, or
accept an autogenerated migration.When()
expression with a list argument crashes
(#29166).Window()
expression in a subquery
(#29172).AbstractBaseUser.normalize_username()
crash if the username
argument isn't a string (#29176).2022年6月01日