From: Vincent Deffontaines Date: Sun, 8 Feb 2009 16:30:24 +0000 (+0000) Subject: Added a section about dynamic content security, and a couple of pointers to X-Git-Tag: 2.3.2~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9afb8318f53ef42a084b20dc8bb50fe9c42cbeb7;p=apache Added a section about dynamic content security, and a couple of pointers to external projects. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@742125 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/security_tips.html.en b/docs/manual/misc/security_tips.html.en index c407dc4142..52f450c1b3 100644 --- a/docs/manual/misc/security_tips.html.en +++ b/docs/manual/misc/security_tips.html.en @@ -35,6 +35,7 @@
  • Non Script Aliased CGI
  • Script Aliased CGI
  • Other sources of dynamic content
  • +
  • Dynamic content security
  • Protecting System Settings
  • Protect Server Files by Default
  • Watching Your Logs
  • @@ -296,6 +297,24 @@
    top
    +

    Dynamic content security

    + + + +

    When setting up dynamic content, such as mod_php, + mod_perl or mod_python, many security considerations + get out of the scope of httpd itself, and you need to consult + documentation from those modules. For example, PHP lets you setup Safe Mode, + which is most usually disabled by default. Another example is Suhosin, a PHP addon for more + security. For more information about those, consult each project + documentation.

    + +

    At the Apache level, a module named mod_security + can be seen as a HTTP firewall and, provided you configure it finely enough, + can help you enhance your dynamic content security.

    + +
    top
    +

    Protecting System Settings

    diff --git a/docs/manual/misc/security_tips.xml b/docs/manual/misc/security_tips.xml index 104617d51e..ee99c006e1 100644 --- a/docs/manual/misc/security_tips.xml +++ b/docs/manual/misc/security_tips.xml @@ -291,6 +291,25 @@ the server user can. Some scripting engines may provide restrictions, but it is better to be safe and assume not.

    + +
    + + Dynamic content security + +

    When setting up dynamic content, such as mod_php, + mod_perl or mod_python, many security considerations + get out of the scope of httpd itself, and you need to consult + documentation from those modules. For example, PHP lets you setup Safe Mode, + which is most usually disabled by default. Another example is Suhosin, a PHP addon for more + security. For more information about those, consult each project + documentation.

    + +

    At the Apache level, a module named mod_security + can be seen as a HTTP firewall and, provided you configure it finely enough, + can help you enhance your dynamic content security.

    +