svn commit: r1936133 - httpd/httpd/trunk
[email protected] Tue, 14 Jul 2026 14:23:53 -0000
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <178403903370.311451.3603626249396030409@svn03-he-fi> |
Author: jorton Date: Tue Jul 14 14:23:53 2026 New Revision: 1936133 Log: * SECURITY.md: Tweak/expand text around configurations. Modified: httpd/httpd/trunk/SECURITY.md Modified: httpd/httpd/trunk/SECURITY.md ============================================================================== --- httpd/httpd/trunk/SECURITY.md Tue Jul 14 13:48:03 2026 (r1936132) +++ httpd/httpd/trunk/SECURITY.md Tue Jul 14 14:23:53 2026 (r1936133) @@ -42,6 +42,12 @@ Any security vulnerability SHOULD be rep Issues which are reproducible only using instrumented builds (such as ASAN, or under valgrind) should be clearly explained as such. +Issues which depend on a specially crafted server configuration MUST +include references (such as public documentation) which show why that +is a configuration that would arise naturally in common deployments. +Special considerations also apply to any issues requiring `.htaccess` +files, per the [Delegated Configuration](#delegated-configuration) section. + ## Basic model Processing of requests by remote untrusted users (HTTP clients) MUST @@ -110,11 +116,18 @@ gain a significant degree of control ove at run-time: * site authors are trusted to not attack the server with malformed or - malicious .htaccess files (for example, files of excessive size). + malicious .htaccess files * site authors gain access to some data (such as files or the environment) which is otherwise restricted. +Examples of malicious `.htaccess` files include, but are not limited +to: + +* configuration files of excessive size +* configurations using deliberately constructed regular expressions + which are expensive to evaluate + In configurations supporting in-process scripting language interpreters which are not sandboxed, such as `mod_lua` or `mod_php`, site authors have exactly equivalent privileges to the user which the