티스토리 수익 글 보기

티스토리 수익 글 보기

[1.6.x] Fixed is_safe_url() to handle leading whitespace. · django/django@72e0b03 · GitHub
Skip to content

Commit 72e0b03

Browse files
committed
[1.6.x] Fixed is_safe_url() to handle leading whitespace.
This is a security fix. Disclosure following shortly.
1 parent d7597b3 commit 72e0b03

File tree

4 files changed

+31
1
lines changed

4 files changed

+31
1
lines changed

django/utils/http.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ def is_safe_url(url, host=None):
256256
"""
257257
if not url:
258258
return False
259+
url = url.strip()
259260
# Chrome treats \ completely as /
260261
url = url.replace('\\', '/')
261262
# Chrome considers any URL with more than two slashes to be absolute, but

docs/releases/1.4.18.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,20 @@ development server now does the same. Django's development server is not
3131
recommended for production use, but matching the behavior of common production
3232
servers reduces the surface area for behavior changes during deployment.
3333

34+
Mitigated possible XSS attack via user-supplied redirect URLs
35+
=============================================================
36+
37+
Django relies on user input in some cases (e.g.
38+
:func:`django.contrib.auth.views.login` and :doc:`i18n </topics/i18n/index>`)
39+
to redirect the user to an "on success" URL. The security checks for these
40+
redirects (namely ``django.util.http.is_safe_url()``) didn't strip leading
41+
whitespace on the tested URL and as such considered URLs like
42+
``\njavascript:...`` safe. If a developer relied on ``is_safe_url()`` to
43+
provide safe redirect targets and put such a URL into a link, they could suffer
44+
from a XSS attack. This bug doesn't affect Django currently, since we only put
45+
this URL into the ``Location`` response header and browsers seem to ignore
46+
JavaScript there.
47+
3448
Bugfixes
3549
========
3650

docs/releases/1.6.10.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,17 @@ containing underscores from incoming requests by default. Django's built-in
2929
development server now does the same. Django's development server is not
3030
recommended for production use, but matching the behavior of common production
3131
servers reduces the surface area for behavior changes during deployment.
32+
33+
Mitigated possible XSS attack via user-supplied redirect URLs
34+
=============================================================
35+
36+
Django relies on user input in some cases (e.g.
37+
:func:`django.contrib.auth.views.login` and :doc:`i18n </topics/i18n/index>`)
38+
to redirect the user to an "on success" URL. The security checks for these
39+
redirects (namely ``django.util.http.is_safe_url()``) didn't strip leading
40+
whitespace on the tested URL and as such considered URLs like
41+
``\njavascript:...`` safe. If a developer relied on ``is_safe_url()`` to
42+
provide safe redirect targets and put such a URL into a link, they could suffer
43+
from a XSS attack. This bug doesn't affect Django currently, since we only put
44+
this URL into the ``Location`` response header and browsers seem to ignore
45+
JavaScript there.

tests/utils_tests/test_http.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ def test_is_safe_url(self):
109109
'http:/\//example.com',
110110
'http:\/example.com',
111111
'http:/\example.com',
112-
'javascript:alert("XSS")'):
112+
'javascript:alert("XSS")',
113+
'\njavascript:alert(x)'):
113114
self.assertFalse(http.is_safe_url(bad_url, host='testserver'), "%s should be blocked" % bad_url)
114115
for good_url in ('/view/?param=http://example.com',
115116
'/view/?param=https://example.com',

0 commit comments

Comments
 (0)