home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277931_security_tips.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  14KB  |  345 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.4.2.8 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="security_tips.xml.meta">
  23.   <parentdocument href="./">Miscellaneous Documentation</parentdocument>
  24.  
  25.   <title>Security Tips</title>
  26.   
  27.   <summary>
  28.     <p>Some hints and tips on security issues in setting up a web server. 
  29.     Some of the suggestions will be general, others specific to Apache.</p>
  30.   </summary>
  31.   
  32.   <section id="uptodate"><title>Keep up to Date</title>
  33.  
  34.     <p>The Apache HTTP Server has a good record for security and a
  35.     developer community highly concerned about security issues.  But
  36.     it is inevitable that some problems -- small or large -- will be
  37.     discovered in software after it is released.  For this reason, it
  38.     is crucial to keep aware of updates to the software.  If you have
  39.     obtained your version of the HTTP Server directly from Apache, we
  40.     highly recommend you subscribe to the <a
  41.     href="http://httpd.apache.org/lists.html#http-announce">Apache
  42.     HTTP Server Announcements List</a> where you can keep informed of
  43.     new releases and security updates.  Similar services are available
  44.     from most third-party distributors of Apache software.</p>
  45.  
  46.     <p>Of course, most times that a web server is compromised, it is
  47.     not because of problems in the HTTP Server code.  Rather, it comes
  48.     from problems in add-on code, CGI scripts, or the underlying
  49.     Operating System.  You must therefore stay aware of problems and
  50.     updates with all the software on your system.</p>
  51.  
  52.   </section>
  53.  
  54.   <section id="serverroot">
  55.   
  56.     <title>Permissions on ServerRoot Directories</title>
  57.     
  58.     <p>In typical operation, Apache is started by the root user, and it 
  59.     switches to the user defined by the <directive 
  60.     module="mpm_common">User</directive> directive to serve hits. As is the 
  61.     case with any command that root executes, you must take care that it is 
  62.     protected from modification by non-root users. Not only must the files 
  63.     themselves be writeable only by root, but so must the directories, and 
  64.     parents of all directories. For example, if you choose to place 
  65.     ServerRoot in  /usr/local/apache then it is suggested that you create 
  66.     that directory as root, with commands like these:</p>
  67.     
  68.     <example>
  69.       mkdir /usr/local/apache <br />
  70.       cd /usr/local/apache <br />
  71.       mkdir bin conf logs <br />
  72.       chown 0 . bin conf logs <br />
  73.       chgrp 0 . bin conf logs <br />
  74.       chmod 755 . bin conf logs
  75.     </example>
  76.     
  77.     <p>It is assumed that /, /usr, and /usr/local are only modifiable by 
  78.     root. When you install the httpd executable, you should ensure that 
  79.     it is similarly protected:</p>
  80.     
  81.     <example>
  82.       cp httpd /usr/local/apache/bin <br />
  83.       chown 0 /usr/local/apache/bin/httpd <br />
  84.       chgrp 0 /usr/local/apache/bin/httpd <br />
  85.       chmod 511 /usr/local/apache/bin/httpd
  86.     </example>
  87.     
  88.     <p>You can create an htdocs subdirectory which is modifiable by other 
  89.     users -- since root never executes any files out of there, and shouldn't 
  90.     be creating files in there.</p>
  91.     
  92.     <p>If you allow non-root users to modify any files that root either 
  93.     executes or writes on then you open your system to root compromises. 
  94.     For example, someone could replace the httpd binary so that the next 
  95.     time you start it, it will execute some arbitrary code. If the logs 
  96.     directory is writeable (by a non-root user), someone could replace 
  97.     a log file with a symlink to some other system file, and then root 
  98.     might overwrite that file with arbitrary data. If the log files 
  99.     themselves are writeable (by a non-root user), then someone may be 
  100.     able to overwrite the log itself with bogus data.</p>
  101.     
  102.   </section>
  103.   
  104.   <section id="ssi">
  105.   
  106.     <title>Server Side Includes</title>
  107.     
  108.     <p>Server Side Includes (SSI) present a server administrator with 
  109.     several potential security risks.</p>
  110.     
  111.     <p>The first risk is the increased load on the server. All 
  112.     SSI-enabled files have to be parsed by Apache, whether or not 
  113.     there are any SSI directives included within the files. While this 
  114.     load increase is minor, in a shared server environment it can become 
  115.     significant.</p>
  116.     
  117.     <p>SSI files also pose the same risks that are associated with CGI 
  118.     scripts in general. Using the "exec cmd" element, SSI-enabled files 
  119.     can execute any CGI script or program under the permissions of the 
  120.     user and group Apache runs as, as configured in httpd.conf.</p>
  121.     
  122.     <p>There are ways to enhance the security of SSI files while still 
  123.     taking advantage of the benefits they provide.</p>
  124.     
  125.     <p>To isolate the damage a wayward SSI file can cause, a server 
  126.     administrator can enable <a href="../suexec.html">suexec</a> as 
  127.     described in the <a href="#cgi">CGI in General</a> section</p>
  128.     
  129.     <p>Enabling SSI for files with .html or .htm extensions can be 
  130.     dangerous. This is especially true in a shared, or high traffic, 
  131.     server environment. SSI-enabled files should have a separate extension,
  132.     such as the conventional .shtml. This helps keep server load at a 
  133.     minimum and allows for easier management of risk.</p>
  134.     
  135.     <p>Another solution is to disable the ability to run scripts and 
  136.     programs from SSI pages. To do this replace <code>Includes</code>
  137.     with <code>IncludesNOEXEC</code> in the <directive
  138.     module="core">Options</directive> directive.  Note that users may 
  139.     still use <--#include virtual="..." --> to execute CGI scripts if 
  140.     these scripts are in directories desginated by a <directive
  141.     module="mod_alias">ScriptAlias</directive> directive.</p>
  142.     
  143.   </section>
  144.   
  145.   <section id="cgi">
  146.   
  147.     <title>CGI in General</title>
  148.     
  149.     <p>First of all, you always have to remember that you must trust the 
  150.     writers of the CGI scripts/programs or your ability to spot potential 
  151.     security holes in CGI, whether they were deliberate or accidental. CGI 
  152.     scripts can run essentially arbitrary commands on your system with the 
  153.     permissions of the web server user and can therefore be extremely 
  154.     dangerous if they are not carefully checked.</p>
  155.     
  156.     <p>All the CGI scripts will run as the same user, so they have potential 
  157.     to conflict (accidentally or deliberately) with other scripts e.g. User 
  158.     A hates User B, so he writes a script to trash User B's CGI database. One 
  159.     program which can be used to allow scripts to run as different users is
  160.     <a href="../suexec.html">suEXEC</a> which is included with Apache as of 
  161.     1.2 and is called from special hooks in the Apache server code. Another 
  162.     popular way of doing this is with 
  163.     <a href="http://cgiwrap.unixtools.org/">CGIWrap</a>.</p>
  164.     
  165.   </section>
  166.  
  167.   <section id="nsaliasedcgi">
  168.   
  169.     <title>Non Script Aliased CGI</title>
  170.     
  171.     <p>Allowing users to execute CGI scripts in any directory should only be 
  172.     considered if:</p>
  173.     
  174.     <ul>
  175.       <li>You trust your users not to write scripts which will deliberately 
  176.           or accidentally expose your system to an attack.</li>
  177.       <li>You consider security at your site to be so feeble in other areas, 
  178.           as to make one more potential hole irrelevant.</li>
  179.       <li>You have no users, and nobody ever visits your server.</li>
  180.     </ul>
  181.     
  182.   </section>
  183.   
  184.   <section id="saliasedcgi">
  185.   
  186.     <title>Script Aliased CGI</title>
  187.     
  188.     <p>Limiting CGI to special directories gives the admin control over what 
  189.     goes into those directories. This is inevitably more secure than non 
  190.     script aliased CGI, but only if users with write access to the 
  191.     directories are trusted or the admin is willing to test each 
  192.     new CGI script/program for potential security holes.</p>
  193.     
  194.     <p>Most sites choose this option over the non script aliased CGI 
  195.     approach.</p>
  196.     
  197.   </section>
  198.  
  199.    <section id="dynamic">
  200.  
  201.   <title>Other sources of dynamic content</title>
  202.  
  203.   <p>
  204.   Embedded scripting options which run as part of the server itself,
  205.   such as mod_php, mod_perl, mod_tcl, and mod_python, run under the
  206.   identity of the server itself (see the <directive 
  207.   module="mpm_common">User</directive> directive), and therefore
  208.   scripts executed by these engines potentially can access anything the
  209.   server user can. Some scripting engines may provide restrictions, but
  210.   it is better to be safe and assume not.</p>
  211.  
  212.   </section>
  213.   
  214.   <section id="systemsettings">
  215.   
  216.     <title>Protecting System Settings</title>
  217.     
  218.     <p>To run a really tight ship, you'll want to stop users from setting 
  219.     up <code>.htaccess</code> files which can override security features 
  220.     you've configured. Here's one way to do it.</p>
  221.     
  222.     <p>In the server configuration file, put</p>
  223.     
  224.     <example>
  225.       <Directory /> <br />
  226.         AllowOverride None <br />
  227.       </Directory>
  228.     </example>
  229.     
  230.     <p>This prevents the use of <code>.htaccess</code> files in all 
  231.     directories apart from those specifically enabled.</p>
  232.     
  233.   </section>
  234.   
  235.   <section id="protectserverfiles">
  236.   
  237.     <title>Protect Server Files by Default</title>
  238.     
  239.     <p>One aspect of Apache which is occasionally misunderstood is the 
  240.     feature of default access. That is, unless you take steps to change it, 
  241.     if the server can find its way to a file through normal URL mapping 
  242.     rules, it can serve it to clients.</p>
  243.     
  244.     <p>For instance, consider the following example:</p>
  245.     
  246.     <example>
  247.       # cd /; ln -s / public_html <br />
  248.       Accessing <code>http://localhost/~root/</code>
  249.     </example>
  250.     
  251.     <p>This would allow clients to walk through the entire filesystem. To 
  252.     work around this, add the following block to your server's 
  253.     configuration:</p>
  254.     
  255.     <example>
  256.       <Directory /> <br />
  257.       Order Deny,Allow <br />
  258.       Deny from all <br />
  259.       </Directory>
  260.     </example>
  261.     
  262.     <p>This will forbid default access to filesystem locations. Add 
  263.     appropriate <directive module="core">Directory</directive> blocks to 
  264.     allow access only in those areas you wish. For example,</p>
  265.     
  266.     <example>
  267.       <Directory /usr/users/*/public_html> <br />
  268.         Order Deny,Allow <br />
  269.         Allow from all <br />
  270.       </Directory> <br />
  271.       <Directory /usr/local/httpd> <br />
  272.         Order Deny,Allow <br />
  273.         Allow from all <br />
  274.       </Directory>
  275.     </example>
  276.     
  277.     <p>Pay particular attention to the interactions of <directive
  278.     module="core">Location</directive> and <directive 
  279.     module="core">Directory</directive> directives; for instance, even 
  280.     if <code><Directory /></code> denies access, a <code>
  281.     <Location /></code> directive might overturn it</p>
  282.     
  283.     <p>Also be wary of playing games with the <directive
  284.     module="mod_userdir">UserDir</directive> directive; setting it to 
  285.     something like "./" would have the same effect, for root, as the first 
  286.     example above. If you are using Apache 1.3 or above, we strongly 
  287.     recommend that you include the following line in your server 
  288.     configuration files:</p>
  289.     
  290.     <example>
  291.       UserDir disabled root
  292.     </example>
  293.     
  294.   </section>
  295.   
  296.   <section id="watchyourlogs">
  297.   
  298.     <title>Watching Your Logs</title>
  299.     
  300.     <p>To keep up-to-date with what is actually going on against your server 
  301.     you have to check the <a href="../logs.html">Log Files</a>.  Even though 
  302.     the log files only reports what has already happened, they will give you 
  303.     some understanding of what attacks is thrown against the server and 
  304.     allows you to check if the necessary level of security is present.</p>
  305.     
  306.     <p>A couple of examples:</p>
  307.     
  308.     <example>
  309.       grep -c "/jsp/source.jsp?/jsp/ /jsp/source.jsp??" access_log <br />
  310.       grep "client denied" error_log | tail -n 10
  311.     </example>
  312.     
  313.     <p>The first example will list the number of attacks trying to exploit the
  314.     <a href="http://online.securityfocus.com/bid/4876/info/">Apache Tomcat 
  315.     Source.JSP Malformed Request Information Disclosure Vulnerability</a>, 
  316.     the second example will list the ten last denied clients, for example:</p>
  317.     
  318.     <example>
  319.       [Thu Jul 11 17:18:39 2002] [error] [client foo.bar.com] client denied 
  320.       by server configuration: /usr/local/apache/htdocs/.htpasswd
  321.     </example>
  322.     
  323.     <p>As you can see, the log files only report what already has happened, so 
  324.     if the client had been able to access the <code>.htpasswd</code> file you 
  325.     would have seen something similar to:</p>
  326.     
  327.     <example>
  328.       foo.bar.com - - [12/Jul/2002:01:59:13 +0200] "GET /.htpasswd HTTP/1.1"
  329.     </example>
  330.     
  331.     <p>in your <a href="../logs.html#accesslog">Access Log</a>. This means 
  332.     you probably commented out the following in your server configuration 
  333.     file:</p>
  334.     
  335.     <example>
  336.       <Files ~ "^\.ht"> <br />
  337.         Order allow,deny <br />
  338.         Deny from all <br />
  339.       <Files>
  340.     </example>
  341.     
  342.   </section>
  343.   
  344. </manualpage>
  345.