Blame SOURCES/httpd-2.4.18-CVE-2016-5387.patch

f5da3f
f5da3f
https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-5387
f5da3f
f5da3f
--- httpd-2.4.18/server/util_script.c.cve5387
f5da3f
+++ httpd-2.4.18/server/util_script.c
f5da3f
@@ -195,6 +195,10 @@
f5da3f
             }
f5da3f
         }
f5da3f
 #endif
f5da3f
+        else if (!strcasecmp(hdrs[i].key, "Proxy")) {
f5da3f
+            /* Don't pass through HTTP_PROXY */
f5da3f
+            continue;
f5da3f
+        }
f5da3f
         else
f5da3f
             add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
f5da3f
     }