Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a914363

Browse files
committed
[1.11.x] Fixed CVE-2018-7537 -- Fixed catastrophic backtracking in django.utils.text.Truncator.
Thanks James Davis for suggesting the fix.
1 parent abf89d7 commit a914363

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

django/utils/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def capfirst(x):
2929
# Set up regular expressions
3030
re_words = re.compile(r'<.*?>|((?:\w[-\w]*|&.*?;)+)', re.U | re.S)
3131
re_chars = re.compile(r'<.*?>|(.)', re.U | re.S)
32-
re_tag = re.compile(r'<(/)?([^ ]+?)(?:(\s*/)| .*?)?>', re.S)
32+
re_tag = re.compile(r'<(/)?(\S+?)(?:(\s*/)|\s.*?)?>', re.S)
3333
re_newlines = re.compile(r'\r\n|\r') # Used in normalize_newlines
3434
re_camel_case = re.compile(r'(((?<=[a-z])[A-Z])|([A-Z](?![A-Z]|$)))')
3535

docs/releases/1.11.11.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,15 @@ expressions. The ``urlize()`` function is used to implement the ``urlize`` and
1616

1717
The problematic regular expressions are replaced with parsing logic that
1818
behaves similarly.
19+
20+
CVE-2018-7537: Denial-of-service possibility in ``truncatechars_html`` and ``truncatewords_html`` template filters
21+
==================================================================================================================
22+
23+
If ``django.utils.text.Truncator``'s ``chars()`` and ``words()`` methods were
24+
passed the ``html=True`` argument, they were extremely slow to evaluate certain
25+
inputs due to a catastrophic backtracking vulnerability in a regular
26+
expression. The ``chars()`` and ``words()`` methods are used to implement the
27+
``truncatechars_html`` and ``truncatewords_html`` template filters, which were
28+
thus vulnerable.
29+
30+
The backtracking problem in the regular expression is fixed.

docs/releases/1.8.19.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,15 @@ expression. The ``urlize()`` function is used to implement the ``urlize`` and
1616

1717
The problematic regular expression is replaced with parsing logic that behaves
1818
similarly.
19+
20+
CVE-2018-7537: Denial-of-service possibility in ``truncatechars_html`` and ``truncatewords_html`` template filters
21+
==================================================================================================================
22+
23+
If ``django.utils.text.Truncator``'s ``chars()`` and ``words()`` methods were
24+
passed the ``html=True`` argument, they were extremely slow to evaluate certain
25+
inputs due to a catastrophic backtracking vulnerability in a regular
26+
expression. The ``chars()`` and ``words()`` methods are used to implement the
27+
``truncatechars_html`` and ``truncatewords_html`` template filters, which were
28+
thus vulnerable.
29+
30+
The backtracking problem in the regular expression is fixed.

tests/utils_tests/test_text.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@ def test_truncate_html_words(self):
139139
truncator = text.Truncator('<p>I &lt;3 python, what about you?</p>')
140140
self.assertEqual('<p>I &lt;3 python...</p>', truncator.words(3, '...', html=True))
141141

142+
re_tag_catastrophic_test = ('</a' + '\t' * 50000) + '//>'
143+
truncator = text.Truncator(re_tag_catastrophic_test)
144+
self.assertEqual(re_tag_catastrophic_test, truncator.words(500, html=True))
145+
142146
def test_wrap(self):
143147
digits = '1234 67 9'
144148
self.assertEqual(text.wrap(digits, 100), '1234 67 9')

0 commit comments

Comments
 (0)