From 2a42a0bff36129fc9aec06b20e67747cfcc85230 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Wed, 17 Sep 2014 13:17:58 +0800 Subject: Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces. --- Lib/pydoc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/pydoc.py') 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 -- cgit v1.2.1