]> granicus.if.org Git - python/commitdiff
Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
authorGeorg Brandl <georg@python.org>
Wed, 17 Sep 2014 05:17:58 +0000 (13:17 +0800)
committerGeorg Brandl <georg@python.org>
Wed, 17 Sep 2014 05:17:58 +0000 (13:17 +0800)
Lib/pydoc.py
Lib/test/test_pydoc.py
Misc/NEWS

index fa02edaffcabdc5d320ae1980782aa88013da813..2a0cbf341caf927b9c86413ce4dde0f589e62ab1 100755 (executable)
@@ -2431,8 +2431,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
index 42a4089940c8ce0129fd95bc2dde0c67727b52d3..b632434e9ab50798ecbb9daf46d556d30cd39396 100644 (file)
@@ -510,6 +510,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
 
index 398ed294cfe9e4bdb9642b23cc25fdcda2f9b608..60946e816be67cffb12eb1dd495260a8a20268fc 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.6?
 Library
 -------
 
+- Issue #22421: Fix a regression that caused the pydoc server to be bound to
+  all interfaces instead of only localhost.
+
 - Issue #22419: Limit the length of incoming HTTP request in wsgiref server to
   65536 bytes and send a 414 error code for higher lengths. Patch contributed
   by Devin Cook.