Commit 2bc23b84 authored by guido@google.com's avatar guido@google.com

Add FTP to the allowed url schemes. Add Misc/NEWS.

parent 60a4a90c
......@@ -643,10 +643,11 @@ class FancyURLopener(URLopener):
newurl = basejoin(self.type + ":" + url, newurl)
# For security reasons we do not allow redirects to protocols
# other than HTTP or HTTPS.
# other than HTTP, HTTPS or FTP.
newurl_lower = newurl.lower()
if not (newurl_lower.startswith('http://') or
newurl_lower.startswith('https://')):
newurl_lower.startswith('https://') or
newurl_lower.startswith('ftp://')):
return
void = fp.read()
......
......@@ -556,10 +556,11 @@ class HTTPRedirectHandler(BaseHandler):
newurl = urlparse.urljoin(req.get_full_url(), newurl)
# For security reasons we do not allow redirects to protocols
# other than HTTP or HTTPS.
# other than HTTP, HTTPS or FTP.
newurl_lower = newurl.lower()
if not (newurl_lower.startswith('http://') or
newurl_lower.startswith('https://')):
newurl_lower.startswith('https://') or
newurl_lower.startswith('ftp://')):
return
# XXX Probably want to forget about the state of the current
......
......@@ -12,6 +12,9 @@ What's New in Python 2.5.6c1?
Library
-------
- Issue #11662: Make urllib and urllib2 ignore redirections if the
scheme is not HTTP, HTTPS or FTP. This fixes a security hole.
- Issue #8674: Fixed a number of incorrect or undefined-behaviour-inducing
overflow checks in the audioop module (CVE-2010-1634).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment