File tree Expand file tree Collapse file tree 4 files changed +41
–2
lines changed
Expand file tree Collapse file tree 4 files changed +41
–2
lines changed Original file line number Diff line number Diff line change @@ -183,8 +183,10 @@ def strip_tags(value):
183183 # is redundant, but helps to reduce number of executions of _strip_once.
184184 while '<' in value and '>' in value :
185185 new_value = _strip_once (value )
186- if new_value == value :
187- # _strip_once was not able to detect more tags
186+ if len (new_value ) >= len (value ):
187+ # _strip_once was not able to detect more tags or length increased
188+ # due to http://bugs.python.org/issue20288
189+ # (affects Python 2 < 2.7.7 and Python 3 < 3.3.5)
188190 break
189191 value = new_value
190192 return value
Original file line number Diff line number Diff line change @@ -5,3 +5,20 @@ Django 1.6.11 release notes
55*March 18, 2015*
66
77Django 1.6.11 fixes two security issues in 1.6.10.
8+
9+ Denial-of-service possibility with ``strip_tags()``
10+ ===================================================
11+
12+ Last year :func:`~django.utils.html.strip_tags` was changed to work
13+ iteratively. The problem is that the size of the input it's processing can
14+ increase on each iteration which results in an infinite loop in
15+ ``strip_tags()``. This issue only affects versions of Python that haven't
16+ received `a bugfix in HTMLParser <http://bugs.python.org/issue20288>`_; namely
17+ Python < 2.7.7 and 3.3.5. Some operating system vendors have also backported
18+ the fix for the Python bug into their packages of earlier versions.
19+
20+ To remedy this issue, ``strip_tags()`` will now return the original input if
21+ it detects the length of the string it's processing increases. Remember that
22+ absolutely NO guarantee is provided about the results of ``strip_tags()`` being
23+ HTML safe. So NEVER mark safe the result of a ``strip_tags()`` call without
24+ escaping it first, for example with :func:`~django.utils.html.escape`.
Original file line number Diff line number Diff line change @@ -6,6 +6,23 @@ Django 1.7.7 release notes
66
77Django 1.7.7 fixes several bugs and security issues in 1.7.6.
88
9+ Denial-of-service possibility with ``strip_tags()``
10+ ===================================================
11+
12+ Last year :func:`~django.utils.html.strip_tags` was changed to work
13+ iteratively. The problem is that the size of the input it's processing can
14+ increase on each iteration which results in an infinite loop in
15+ ``strip_tags()``. This issue only affects versions of Python that haven't
16+ received `a bugfix in HTMLParser <http://bugs.python.org/issue20288>`_; namely
17+ Python < 2.7.7 and 3.3.5. Some operating system vendors have also backported
18+ the fix for the Python bug into their packages of earlier versions.
19+
20+ To remedy this issue, ``strip_tags()`` will now return the original input if
21+ it detects the length of the string it's processing increases. Remember that
22+ absolutely NO guarantee is provided about the results of ``strip_tags()`` being
23+ HTML safe. So NEVER mark safe the result of a ``strip_tags()`` call without
24+ escaping it first, for example with :func:`~django.utils.html.escape`.
25+
926Bugfixes
1027========
1128
Original file line number Diff line number Diff line change @@ -82,6 +82,9 @@ def test_strip_tags(self):
8282 ('a<p a >b</p>c' , 'abc' ),
8383 ('d<a:b c:d>e</p>f' , 'def' ),
8484 ('<strong>foo</strong><a href="http://example.com">bar</a>' , 'foobar' ),
85+ # caused infinite loop on Pythons not patched with
86+ # http://bugs.python.org/issue20288
87+ ('&gotcha&#;<>' , '&gotcha&#;<>' ),
8588 )
8689 for value , output in items :
8790 self .check_output (f , value , output )
You can’t perform that action at this time.
0 commit comments