Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
Apache:Modules
apache2-mod_fcgid
mod_fcgid-2.3.9-CVE-2016-1000104.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File mod_fcgid-2.3.9-CVE-2016-1000104.patch of Package apache2-mod_fcgid
Index: mod_fcgid-2.3.9/modules/fcgid/mod_fcgid.c =================================================================== --- mod_fcgid-2.3.9.orig/modules/fcgid/mod_fcgid.c +++ mod_fcgid-2.3.9/modules/fcgid/mod_fcgid.c @@ -155,9 +155,15 @@ static void fcgid_add_cgi_vars(request_r * consistent with legacy mod_fcgid behavior and mod_fastcgi * prior to 2.4.7 */ - apr_table_setn(r->subprocess_env, *hdr, val); - /* standard munging of header name (upcase, HTTP_, etc.) */ - apr_table_setn(r->subprocess_env, http2env(r->pool, *hdr), val); + /* boo#988492 httpoxy don't set HTTP_PROXY */ + if ( strcasecmp(*hdr, "HTTP_PROXY") != 0 && strcasecmp(*hdr, "HTTP-PROXY") != 0) { + apr_table_setn(r->subprocess_env, *hdr, val); + } + /* boo#988492 httpoxy don't set HTTP_PROXY */ + if ( strcasecmp(*hdr, "PROXY") != 0 ) { + /* standard munging of header name (upcase, HTTP_, etc.) */ + apr_table_setn(r->subprocess_env, http2env(r->pool, *hdr), val); + } } } }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor