1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

remove r1792169 taint checks from proxy and status modules

Both of these checks are problematic without further
work.

status: even a .htaccess with no SetHandler blocks the handler.
proxy: RewriteRule ... ... [P] in htaccess is blocked.




git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1796352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2017-05-26 21:50:33 +00:00
parent 41b123254c
commit c46a62d72f
2 changed files with 0 additions and 15 deletions

View File

@@ -213,13 +213,6 @@ static int status_handler(request_rec *r)
return DECLINED;
}
/* A request that has passed through .htaccess has no business
* landing up here.
*/
if (ap_request_tainted(r, AP_TAINT_HTACCESS)) {
return DECLINED;
}
#ifdef HAVE_TIMES
times_per_thread = getpid() != child_pid;
#endif