Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
1c83fc88
Kaydet (Commit)
1c83fc88
authored
Mar 04, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed an infinite loop possibility in strip_tags().
This is a security fix; disclosure to follow shortly.
üst
9ddfe9b3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
2 deletions
+41
-2
html.py
django/utils/html.py
+4
-2
1.6.11.txt
docs/releases/1.6.11.txt
+17
-0
1.7.7.txt
docs/releases/1.7.7.txt
+17
-0
test_html.py
tests/utils_tests/test_html.py
+3
-0
No files found.
django/utils/html.py
Dosyayı görüntüle @
1c83fc88
...
...
@@ -175,8 +175,10 @@ def strip_tags(value):
# is redundant, but helps to reduce number of executions of _strip_once.
while
'<'
in
value
and
'>'
in
value
:
new_value
=
_strip_once
(
value
)
if
new_value
==
value
:
# _strip_once was not able to detect more tags
if
len
(
new_value
)
>=
len
(
value
):
# _strip_once was not able to detect more tags or length increased
# due to http://bugs.python.org/issue20288
# (affects Python 2 < 2.7.7 and Python 3 < 3.3.5)
break
value
=
new_value
return
value
...
...
docs/releases/1.6.11.txt
Dosyayı görüntüle @
1c83fc88
...
...
@@ -5,3 +5,20 @@ Django 1.6.11 release notes
*March 18, 2015*
Django 1.6.11 fixes two security issues in 1.6.10.
Denial-of-service possibility with ``strip_tags()``
===================================================
Last year :func:`~django.utils.html.strip_tags` was changed to work
iteratively. The problem is that the size of the input it's processing can
increase on each iteration which results in an infinite loop in
``strip_tags()``. This issue only affects versions of Python that haven't
received `a bugfix in HTMLParser <http://bugs.python.org/issue20288>`_; namely
Python < 2.7.7 and 3.3.5. Some operating system vendors have also backported
the fix for the Python bug into their packages of earlier versions.
To remedy this issue, ``strip_tags()`` will now return the original input if
it detects the length of the string it's processing increases. Remember that
absolutely NO guarantee is provided about the results of ``strip_tags()`` being
HTML safe. So NEVER mark safe the result of a ``strip_tags()`` call without
escaping it first, for example with :func:`~django.utils.html.escape`.
docs/releases/1.7.7.txt
Dosyayı görüntüle @
1c83fc88
...
...
@@ -6,6 +6,23 @@ Django 1.7.7 release notes
Django 1.7.7 fixes several bugs and security issues in 1.7.6.
Denial-of-service possibility with ``strip_tags()``
===================================================
Last year :func:`~django.utils.html.strip_tags` was changed to work
iteratively. The problem is that the size of the input it's processing can
increase on each iteration which results in an infinite loop in
``strip_tags()``. This issue only affects versions of Python that haven't
received `a bugfix in HTMLParser <http://bugs.python.org/issue20288>`_; namely
Python < 2.7.7 and 3.3.5. Some operating system vendors have also backported
the fix for the Python bug into their packages of earlier versions.
To remedy this issue, ``strip_tags()`` will now return the original input if
it detects the length of the string it's processing increases. Remember that
absolutely NO guarantee is provided about the results of ``strip_tags()`` being
HTML safe. So NEVER mark safe the result of a ``strip_tags()`` call without
escaping it first, for example with :func:`~django.utils.html.escape`.
Bugfixes
========
...
...
tests/utils_tests/test_html.py
Dosyayı görüntüle @
1c83fc88
...
...
@@ -82,6 +82,9 @@ class TestUtilsHtml(TestCase):
(
'a<p a >b</p>c'
,
'abc'
),
(
'd<a:b c:d>e</p>f'
,
'def'
),
(
'<strong>foo</strong><a href="http://example.com">bar</a>'
,
'foobar'
),
# caused infinite loop on Pythons not patched with
# http://bugs.python.org/issue20288
(
'&gotcha&#;<>'
,
'&gotcha&#;<>'
),
)
for
value
,
output
in
items
:
self
.
check_output
(
f
,
value
,
output
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment