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
011a5431
Kaydet (Commit)
011a5431
authored
Mar 10, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Made is_safe_url() reject URLs that start with control characters.
This is a security fix; disclosure to follow shortly.
üst
1c83fc88
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
68 additions
and
2 deletions
+68
-2
http.py
django/utils/http.py
+8
-1
1.4.20.txt
docs/releases/1.4.20.txt
+19
-0
1.6.11.txt
docs/releases/1.6.11.txt
+19
-0
1.7.7.txt
docs/releases/1.7.7.txt
+19
-0
test_http.py
tests/utils_tests/test_http.py
+3
-1
No files found.
django/utils/http.py
Dosyayı görüntüle @
011a5431
...
@@ -5,6 +5,7 @@ import calendar
...
@@ -5,6 +5,7 @@ import calendar
import
datetime
import
datetime
import
re
import
re
import
sys
import
sys
import
unicodedata
from
binascii
import
Error
as
BinasciiError
from
binascii
import
Error
as
BinasciiError
from
email.utils
import
formatdate
from
email.utils
import
formatdate
...
@@ -272,9 +273,10 @@ def is_safe_url(url, host=None):
...
@@ -272,9 +273,10 @@ def is_safe_url(url, host=None):
Always returns ``False`` on an empty url.
Always returns ``False`` on an empty url.
"""
"""
if
url
is
not
None
:
url
=
url
.
strip
()
if
not
url
:
if
not
url
:
return
False
return
False
url
=
url
.
strip
()
# Chrome treats \ completely as /
# Chrome treats \ completely as /
url
=
url
.
replace
(
'
\\
'
,
'/'
)
url
=
url
.
replace
(
'
\\
'
,
'/'
)
# Chrome considers any URL with more than two slashes to be absolute, but
# Chrome considers any URL with more than two slashes to be absolute, but
...
@@ -288,5 +290,10 @@ def is_safe_url(url, host=None):
...
@@ -288,5 +290,10 @@ def is_safe_url(url, host=None):
# allow this syntax.
# allow this syntax.
if
not
url_info
.
netloc
and
url_info
.
scheme
:
if
not
url_info
.
netloc
and
url_info
.
scheme
:
return
False
return
False
# Forbid URLs that start with control characters. Some browsers (like
# Chrome) ignore quite a few control characters at the start of a
# URL and might consider the URL as scheme relative.
if
unicodedata
.
category
(
url
[
0
])[
0
]
==
'C'
:
return
False
return
((
not
url_info
.
netloc
or
url_info
.
netloc
==
host
)
and
return
((
not
url_info
.
netloc
or
url_info
.
netloc
==
host
)
and
(
not
url_info
.
scheme
or
url_info
.
scheme
in
[
'http'
,
'https'
]))
(
not
url_info
.
scheme
or
url_info
.
scheme
in
[
'http'
,
'https'
]))
docs/releases/1.4.20.txt
Dosyayı görüntüle @
011a5431
...
@@ -5,3 +5,22 @@ Django 1.4.20 release notes
...
@@ -5,3 +5,22 @@ Django 1.4.20 release notes
*March 18, 2015*
*March 18, 2015*
Django 1.4.20 fixes one security issue in 1.4.19.
Django 1.4.20 fixes one security issue in 1.4.19.
Mitigated possible XSS attack via user-supplied redirect URLs
=============================================================
Django relies on user input in some cases (e.g.
:func:`django.contrib.auth.views.login` and :doc:`i18n </topics/i18n/index>`)
to redirect the user to an "on success" URL. The security checks for these
redirects (namely ``django.utils.http.is_safe_url()``) accepted URLs with
leading control characters and so considered URLs like ``\x08javascript:...``
safe. This issue doesn't affect Django currently, since we only put this URL
into the ``Location`` response header and browsers seem to ignore JavaScript
there. Browsers we tested also treat URLs prefixed with control characters such
as ``%08//example.com`` as relative paths so redirection to an unsafe target
isn't a problem either.
However, if a developer relies on ``is_safe_url()`` to
provide safe redirect targets and puts such a URL into a link, they could
suffer from an XSS attack as some browsers such as Google Chrome ignore control
characters at the start of a URL in an anchor ``href``.
docs/releases/1.6.11.txt
Dosyayı görüntüle @
011a5431
...
@@ -22,3 +22,22 @@ it detects the length of the string it's processing increases. Remember that
...
@@ -22,3 +22,22 @@ 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
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
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`.
escaping it first, for example with :func:`~django.utils.html.escape`.
Mitigated possible XSS attack via user-supplied redirect URLs
=============================================================
Django relies on user input in some cases (e.g.
:func:`django.contrib.auth.views.login` and :doc:`i18n </topics/i18n/index>`)
to redirect the user to an "on success" URL. The security checks for these
redirects (namely ``django.utils.http.is_safe_url()``) accepted URLs with
leading control characters and so considered URLs like ``\x08javascript:...``
safe. This issue doesn't affect Django currently, since we only put this URL
into the ``Location`` response header and browsers seem to ignore JavaScript
there. Browsers we tested also treat URLs prefixed with control characters such
as ``%08//example.com`` as relative paths so redirection to an unsafe target
isn't a problem either.
However, if a developer relies on ``is_safe_url()`` to
provide safe redirect targets and puts such a URL into a link, they could
suffer from an XSS attack as some browsers such as Google Chrome ignore control
characters at the start of a URL in an anchor ``href``.
docs/releases/1.7.7.txt
Dosyayı görüntüle @
011a5431
...
@@ -23,6 +23,25 @@ absolutely NO guarantee is provided about the results of ``strip_tags()`` being
...
@@ -23,6 +23,25 @@ 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
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`.
escaping it first, for example with :func:`~django.utils.html.escape`.
Mitigated possible XSS attack via user-supplied redirect URLs
=============================================================
Django relies on user input in some cases (e.g.
:func:`django.contrib.auth.views.login` and :doc:`i18n </topics/i18n/index>`)
to redirect the user to an "on success" URL. The security checks for these
redirects (namely ``django.utils.http.is_safe_url()``) accepted URLs with
leading control characters and so considered URLs like ``\x08javascript:...``
safe. This issue doesn't affect Django currently, since we only put this URL
into the ``Location`` response header and browsers seem to ignore JavaScript
there. Browsers we tested also treat URLs prefixed with control characters such
as ``%08//example.com`` as relative paths so redirection to an unsafe target
isn't a problem either.
However, if a developer relies on ``is_safe_url()`` to
provide safe redirect targets and puts such a URL into a link, they could
suffer from an XSS attack as some browsers such as Google Chrome ignore control
characters at the start of a URL in an anchor ``href``.
Bugfixes
Bugfixes
========
========
...
...
tests/utils_tests/test_http.py
Dosyayı görüntüle @
011a5431
...
@@ -115,7 +115,9 @@ class TestUtilsHttp(unittest.TestCase):
...
@@ -115,7 +115,9 @@ class TestUtilsHttp(unittest.TestCase):
'http:
\
/example.com'
,
'http:
\
/example.com'
,
'http:/
\
example.com'
,
'http:/
\
example.com'
,
'javascript:alert("XSS")'
,
'javascript:alert("XSS")'
,
'
\n
javascript:alert(x)'
):
'
\n
javascript:alert(x)'
,
'
\x08
//example.com'
,
'
\n
'
):
self
.
assertFalse
(
http
.
is_safe_url
(
bad_url
,
host
=
'testserver'
),
"
%
s should be blocked"
%
bad_url
)
self
.
assertFalse
(
http
.
is_safe_url
(
bad_url
,
host
=
'testserver'
),
"
%
s should be blocked"
%
bad_url
)
for
good_url
in
(
'/view/?param=http://example.com'
,
for
good_url
in
(
'/view/?param=http://example.com'
,
'/view/?param=https://example.com'
,
'/view/?param=https://example.com'
,
...
...
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