summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-09-17 13:17:58 +0800
committerSenthil Kumaran <senthil@uthcode.com>2014-09-17 13:17:58 +0800
commit2a42a0bff36129fc9aec06b20e67747cfcc85230 (patch)
treeed6191fd020bf855c087bd8a31728b0dc288925a
parent7d0b8f95e7c6cc70c1a636312099773376337d14 (diff)
downloadcpython-git-2a42a0bff36129fc9aec06b20e67747cfcc85230.tar.gz
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
-rwxr-xr-xLib/pydoc.py4
-rw-r--r--Lib/test/test_pydoc.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 9dce07976d..c9d8436228 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -2168,8 +2168,8 @@ def _start_server(urlhandler, port):
class DocServer(http.server.HTTPServer):
def __init__(self, port, callback):
- self.host = (sys.platform == 'mac') and '127.0.0.1' or 'localhost'
- self.address = ('', port)
+ self.host = 'localhost'
+ self.address = (self.host, port)
self.callback = callback
self.base.__init__(self, self.address, self.handler)
self.quit = False
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index 43f4163dae..ce46d60f6c 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -557,6 +557,8 @@ class PydocServerTest(unittest.TestCase):
return text
serverthread = pydoc._start_server(my_url_handler, port=0)
+ self.assertIn('localhost', serverthread.docserver.address)
+
starttime = time.time()
timeout = 1 #seconds