diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-01-21 03:52:48 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-01-21 03:52:48 (GMT) |
commit | 3800ea9f652817e510a0db27bf124d2b80e7be10 (patch) | |
tree | d340d0dcdf5dba0aa6617226d49fbb8a55eb34ea /Lib | |
parent | 002890861f7bd9eeb9036a89ade5e9a59fb6fa7c (diff) | |
download | cpython-3800ea9f652817e510a0db27bf124d2b80e7be10.zip cpython-3800ea9f652817e510a0db27bf124d2b80e7be10.tar.gz cpython-3800ea9f652817e510a0db27bf124d2b80e7be10.tar.bz2 |
Fix Issue6631 - Disallow relative file paths in urllib urlopen
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_urllib.py | 3 | ||||
-rw-r--r-- | Lib/test/test_urllib2net.py | 2 | ||||
-rw-r--r-- | Lib/urllib/request.py | 2 |
3 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index 5a6dd65..f6b48cb 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py @@ -160,6 +160,9 @@ class urlopen_FileTests(unittest.TestCase): for line in self.returned_obj: self.assertEqual(line, self.text) + def test_relativelocalfile(self): + self.assertRaises(ValueError,urllib.request.urlopen,'./' + self.pathname) + class ProxyTests(unittest.TestCase): def setUp(self): diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index 54f4e0c..5fcb4cb 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -125,6 +125,8 @@ class OtherNetworkTests(unittest.TestCase): finally: os.remove(TESTFN) + self.assertRaises(ValueError, urllib.request.urlopen,'./relative_path/to/file') + # XXX Following test depends on machine configurations that are internal # to CNRI. Need to set up a public server with the right authentication # configuration for test purposes. diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index cf065715..94b713e 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1781,6 +1781,8 @@ class URLopener: urlfile = file if file[:1] == '/': urlfile = 'file://' + file + elif file[:2] == './': + raise ValueError("local file url may start with / or file:. Unknown url of type: %s" % url) return addinfourl(open(localname, 'rb'), headers, urlfile) raise URLError('local file error', 'not on local host') |