This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients benjamin.peterson, k.s.solnushkin, ned.deily
Date 2014-07-06.22:06:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404684360.83.0.281761417435.issue21323@psf.upfronthosting.co.za>
In-reply-to
Content
The change in behavior is definitely caused by the changes for Issue19435.  The code added there does not work correctly if there are nested directories in the "cgi-bin" directory; for one thing, the initial os.path.isdir(scriptdir) test in run_cgi is failing because the path in nextdir is missing the dir component: it's testing /path/to/test instead of /path/to/cgi-bin/test.  I didn't look further.  Along with a fix, there should be a test for nested directories.  And decide whether to fix the regression it presumably caused in the security branches as well.

http://hg.python.org/cpython/file/d25ae22cc992/Lib/http/server.py#l1009
History
Date User Action Args
2014-07-06 22:06:00ned.deilysetrecipients: + ned.deily, benjamin.peterson, k.s.solnushkin
2014-07-06 22:06:00ned.deilysetmessageid: <1404684360.83.0.281761417435.issue21323@psf.upfronthosting.co.za>
2014-07-06 22:06:00ned.deilylinkissue21323 messages
2014-07-06 22:06:00ned.deilycreate