mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed CVE-2018-7536 -- Fixed catastrophic backtracking in urlize and urlizetrunc template filters.
Thanks Florian Apolloner for assisting with the patch.
This commit is contained in:
@@ -5,3 +5,14 @@ Django 1.8.19 release notes
|
||||
*March 6, 2018*
|
||||
|
||||
Django 1.8.19 fixes two security issues in 1.18.18.
|
||||
|
||||
CVE-2018-7536: Denial-of-service possibility in ``urlize`` and ``urlizetrunc`` template filters
|
||||
===============================================================================================
|
||||
|
||||
The ``django.utils.html.urlize()`` function was extremely slow to evaluate
|
||||
certain inputs due to a catastrophic backtracking vulnerability in a regular
|
||||
expression. The ``urlize()`` function is used to implement the ``urlize`` and
|
||||
``urlizetrunc`` template filters, which were thus vulnerable.
|
||||
|
||||
The problematic regular expression is replaced with parsing logic that behaves
|
||||
similarly.
|
||||
|
||||
Reference in New Issue
Block a user