[issue14566] run_cgi reverts to using unnormalized path

2015-10-01 Thread Martin Panter
Martin Panter added the comment: This was also reported in Issue 19435. The combination changes for Issue 19435 + Issue 21323 looks essentially like the proposed change here. Issue 14567 remains about the double processing of paths. -- nosy: +martin.panter resolution: -> duplicate sta

[issue14566] run_cgi reverts to using unnormalized path

2014-08-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue14566] run_cgi reverts to using unnormalized path

2014-07-03 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a response to this security issue please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 ___ Python tracker ___

[issue14566] run_cgi reverts to using unnormalized path

2012-04-12 Thread Glenn Linderman
New submission from Glenn Linderman : While is_cgi carefully normalizes the path using _url_collapse_path, if it returns True, then run_cgi is called... which sort of starts out using the cgi_info created by is_cgi, but then compares and searches using the original self.path value instead. Th