home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 May / PCWorld_2004-05_cd.bin / komunikace / apache / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252275_suexec.xml < prev    next >
Extensible Markup Language  |  2003-10-12  |  23KB  |  594 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.  
  5. <manualpage metafile="suexec.xml.meta">
  6.  
  7.   <title>suEXEC Support</title>
  8.  
  9.   <summary>
  10.     <p>The <strong>suEXEC</strong> feature provides
  11.     Apache users the ability
  12.     to run <strong>CGI</strong> and <strong>SSI</strong> programs
  13.     under user IDs different from the user ID of the calling
  14.     web-server. Normally, when a CGI or SSI program executes, it
  15.     runs as the same user who is running the web server.</p>
  16.  
  17.     <p>Used properly, this feature can reduce
  18.     considerably the security risks involved with allowing users to
  19.     develop and run private CGI or SSI programs. However, if suEXEC
  20.     is improperly configured, it can cause any number of problems
  21.     and possibly create new holes in your computer's security. If
  22.     you aren't familiar with managing <em>setuid root</em> programs
  23.     and the security issues they present, we highly recommend that
  24.     you not consider using suEXEC.</p>
  25.   </summary>
  26.  
  27. <section id="before"><title>Before we begin</title>
  28.  
  29.     <p>Before jumping head-first into this document,
  30.     you should be aware of the assumptions made on the part of the
  31.     Apache Group and this document.</p>
  32.  
  33.     <p>First, it is assumed that you are using a UNIX
  34.     derivative operating system that is capable of
  35.     <strong>setuid</strong> and <strong>setgid</strong> operations.
  36.     All command examples are given in this regard. Other platforms,
  37.     if they are capable of supporting suEXEC, may differ in their
  38.     configuration.</p>
  39.  
  40.     <p>Second, it is assumed you are familiar with
  41.     some basic concepts of your computer's security and its
  42.     administration. This involves an understanding of
  43.     <strong>setuid/setgid</strong> operations and the various
  44.     effects they may have on your system and its level of
  45.     security.</p>
  46.  
  47.     <p>Third, it is assumed that you are using an
  48.     <strong>unmodified</strong> version of suEXEC code. All code
  49.     for suEXEC has been carefully scrutinized and tested by the
  50.     developers as well as numerous beta testers. Every precaution
  51.     has been taken to ensure a simple yet solidly safe base of
  52.     code. Altering this code can cause unexpected problems and new
  53.     security risks. It is <strong>highly</strong> recommended you
  54.     not alter the suEXEC code unless you are well versed in the
  55.     particulars of security programming and are willing to share
  56.     your work with the Apache Group for consideration.</p>
  57.  
  58.     <p>Fourth, and last, it has been the decision of
  59.     the Apache Group to <strong>NOT</strong> make suEXEC part of
  60.     the default installation of Apache. To this end, suEXEC
  61.     configuration requires of the administrator careful attention
  62.     to details. After due consideration has been given to the
  63.     various settings for suEXEC, the administrator may install
  64.     suEXEC through normal installation methods. The values for
  65.     these settings need to be carefully determined and specified by
  66.     the administrator to properly maintain system security during
  67.     the use of suEXEC functionality. It is through this detailed
  68.     process that the Apache Group hopes to limit suEXEC
  69.     installation only to those who are careful and determined
  70.     enough to use it.</p>
  71.  
  72.     <p>Still with us? Yes? Good. Let's move on!</p>
  73. </section>
  74.  
  75. <section id="model"><title>suEXEC Security Model</title>
  76.  
  77.     <p>Before we begin configuring and installing
  78.     suEXEC, we will first discuss the security model you are about
  79.     to implement. By doing so, you may better understand what
  80.     exactly is going on inside suEXEC and what precautions are
  81.     taken to ensure your system's security.</p>
  82.  
  83.     <p><strong>suEXEC</strong> is based on a setuid
  84.     "wrapper" program that is called by the main Apache web server.
  85.     This wrapper is called when an HTTP request is made for a CGI
  86.     or SSI program that the administrator has designated to run as
  87.     a userid other than that of the main server. When such a
  88.     request is made, Apache provides the suEXEC wrapper with the
  89.     program's name and the user and group IDs under which the
  90.     program is to execute.</p>
  91.  
  92.     <p>The wrapper then employs the following process
  93.     to determine success or failure -- if any one of these
  94.     conditions fail, the program logs the failure and exits with an
  95.     error, otherwise it will continue:</p>
  96.  
  97.     <ol>
  98.       <li>
  99.         <strong>Is the user executing this wrapper a valid user of
  100.         this system?</strong> 
  101.  
  102.         <p class="indent">
  103.           This is to ensure that the user executing the wrapper is
  104.           truly a user of the system.
  105.         </p>
  106.      </li>
  107.  
  108.      <li>
  109.         <strong>Was the wrapper called with the proper number of
  110.         arguments?</strong> 
  111.  
  112.         <p class="indent">
  113.           The wrapper will only execute if it is given the proper
  114.           number of arguments. The proper argument format is known
  115.           to the Apache web server. If the wrapper is not receiving
  116.           the proper number of arguments, it is either being
  117.           hacked, or there is something wrong with the suEXEC
  118.           portion of your Apache binary.
  119.         </p>
  120.       </li>
  121.  
  122.       <li>
  123.         <strong>Is this valid user allowed to run the
  124.         wrapper?</strong> 
  125.  
  126.         <p class="indent">
  127.           Is this user the user allowed to run this wrapper? Only
  128.           one user (the Apache user) is allowed to execute this
  129.           program.
  130.         </p>
  131.       </li>
  132.  
  133.       <li>
  134.         <strong>Does the target CGI or SSI program have an unsafe
  135.         hierarchical reference?</strong> 
  136.  
  137.         <p class="indent">
  138.           Does the target CGI or SSI program's path contain a leading
  139.           '/' or have a '..' backreference? These are not allowed; the
  140.           target CGI/SSI program must reside within suEXEC's document
  141.           root (see <code>--with-suexec-docroot=<em>DIR</em></code>
  142.           below).
  143.         </p>
  144.       </li>
  145.  
  146.       <li>
  147.         <strong>Is the target user name valid?</strong> 
  148.  
  149.         <p class="indent">
  150.           Does the target user exist?
  151.         </p>
  152.       </li>
  153.  
  154.       <li>
  155.         <strong>Is the target group name valid?</strong> 
  156.  
  157.         <p class="indent">
  158.           Does the target group exist?
  159.         </p>
  160.       </li>
  161.  
  162.       <li>
  163.         <strong>Is the target user <em>NOT</em> superuser?</strong>
  164.  
  165.  
  166.         <p class="indent">
  167.           Presently, suEXEC does not allow <code><em>root</em></code>
  168.           to execute CGI/SSI programs.
  169.         </p>
  170.       </li>
  171.  
  172.       <li>
  173.         <strong>Is the target userid <em>ABOVE</em> the minimum ID
  174.         number?</strong> 
  175.  
  176.         <p class="indent">
  177.           The minimum user ID number is specified during
  178.           configuration. This allows you to set the lowest possible
  179.           userid that will be allowed to execute CGI/SSI programs.
  180.           This is useful to block out "system" accounts.
  181.         </p>
  182.       </li>
  183.  
  184.       <li>
  185.         <strong>Is the target group <em>NOT</em> the superuser
  186.         group?</strong> 
  187.  
  188.         <p class="indent">
  189.           Presently, suEXEC does not allow the <code><em>root</em></code>
  190.           group to execute CGI/SSI programs.
  191.         </p>
  192.       </li>
  193.  
  194.       <li>
  195.         <strong>Is the target groupid <em>ABOVE</em> the minimum ID
  196.         number?</strong> 
  197.  
  198.         <p class="indent">
  199.           The minimum group ID number is specified during
  200.           configuration. This allows you to set the lowest possible
  201.           groupid that will be allowed to execute CGI/SSI programs.
  202.           This is useful to block out "system" groups.
  203.         </p>
  204.       </li>
  205.  
  206.       <li>
  207.         <strong>Can the wrapper successfully become the target user
  208.         and group?</strong> 
  209.  
  210.         <p class="indent">
  211.           Here is where the program becomes the target user and
  212.           group via setuid and setgid calls. The group access list
  213.           is also initialized with all of the groups of which the
  214.           user is a member.
  215.         </p>
  216.       </li>
  217.  
  218.       <li>
  219.         <strong>Can we change directory to the one in which the target
  220.         CGI/SSI program resides?</strong>
  221.  
  222.         <p class="indent">
  223.           If it doesn't exist, it can't very well contain files. If we
  224.           can't change directory to it, it might aswell not exist.
  225.         </p>
  226.       </li>
  227.  
  228.       <li>
  229.         <strong>Is the directory within the Apache
  230.         webspace?</strong> 
  231.  
  232.         <p class="indent">
  233.           If the request is for a regular portion of the server, is
  234.           the requested directory within suEXEC's document root? If
  235.           the request is for a UserDir, is the requested directory
  236.           within the directory configured as suEXEC's userdir (see
  237.           <a href="#install">suEXEC's configuration options</a>)?
  238.         </p>
  239.       </li>
  240.  
  241.       <li>
  242.         <strong>Is the directory <em>NOT</em> writable by anyone
  243.         else?</strong> 
  244.  
  245.         <p class="indent">
  246.           We don't want to open up the directory to others; only
  247.           the owner user may be able to alter this directories
  248.           contents.
  249.         </p>
  250.       </li>
  251.  
  252.       <li>
  253.         <strong>Does the target CGI/SSI program exist?</strong> 
  254.  
  255.         <p class="indent">
  256.           If it doesn't exists, it can't very well be executed.
  257.         </p>
  258.       </li>
  259.  
  260.       <li>
  261.         <strong>Is the target CGI/SSI program <em>NOT</em> writable
  262.         by anyone else?</strong> 
  263.  
  264.         <p class="indent">
  265.           We don't want to give anyone other than the owner the
  266.           ability to change the CGI/SSI program.
  267.         </p>
  268.       </li>
  269.  
  270.       <li>
  271.         <strong>Is the target CGI/SSI program <em>NOT</em> setuid or
  272.         setgid?</strong> 
  273.  
  274.         <p class="indent">
  275.           We do not want to execute programs that will then change
  276.           our UID/GID again.
  277.         </p>
  278.       </li>
  279.  
  280.       <li>
  281.         <strong>Is the target user/group the same as the program's
  282.         user/group?</strong> 
  283.  
  284.         <p class="indent">
  285.           Is the user the owner of the file?
  286.         </p>
  287.       </li>
  288.  
  289.       <li>
  290.         <strong>Can we successfully clean the process environment
  291.         to ensure safe operations?</strong> 
  292.  
  293.         <p class="indent">
  294.           suEXEC cleans the process' environment by establishing a
  295.           safe execution PATH (defined during configuration), as
  296.           well as only passing through those variables whose names
  297.           are listed in the safe environment list (also created
  298.           during configuration).
  299.         </p>
  300.       </li>
  301.  
  302.       <li>
  303.         <strong>Can we successfully become the target CGI/SSI program
  304.         and execute?</strong> 
  305.  
  306.         <p class="indent">
  307.           Here is where suEXEC ends and the target CGI/SSI program begins.
  308.         </p>
  309.       </li>
  310.     </ol>
  311.  
  312.     <p>This is the standard operation of the
  313.     suEXEC wrapper's security model. It is somewhat stringent and
  314.     can impose new limitations and guidelines for CGI/SSI design,
  315.     but it was developed carefully step-by-step with security in
  316.     mind.</p>
  317.  
  318.     <p>For more information as to how this security
  319.     model can limit your possibilities in regards to server
  320.     configuration, as well as what security risks can be avoided
  321.     with a proper suEXEC setup, see the <a
  322.     href="#jabberwock">"Beware the Jabberwock"</a> section of this
  323.     document.</p>
  324. </section>
  325.  
  326. <section id="install"><title>Configuring & Installing
  327.     suEXEC</title>
  328.  
  329.     <p>Here's where we begin the fun.</p>
  330.  
  331.     <p><strong>suEXEC configuration
  332.     options</strong><br />
  333.     </p>
  334.  
  335.     <dl>
  336.       <dt><code>--enable-suexec</code></dt>
  337.  
  338.       <dd>This option enables the suEXEC feature which is never
  339.       installed or activated by default. At least one
  340.       <code>--with-suexec-xxxxx</code> option has to be provided
  341.       together with the <code>--enable-suexec</code> option to let
  342.       APACI accept your request for using the suEXEC feature.</dd>
  343.  
  344.       <dt><code>--with-suexec-bin=<em>PATH</em></code></dt>
  345.  
  346.       <dd>The path to the <code>suexec</code> binary must be hard-coded
  347.       in the server for security reasons. Use this option to override
  348.       the default path. <em>e.g.</em>
  349.       <code>--with-suexec-bin=/usr/sbin/suexec</code></dd>
  350.  
  351.       <dt><code>--with-suexec-caller=<em>UID</em></code></dt>
  352.  
  353.       <dd>The <a href="mod/mpm_common.html#user">username</a> under which
  354.       Apache normally runs. This is the only user allowed to
  355.       execute this program.</dd>
  356.  
  357.       <dt><code>--with-suexec-userdir=<em>DIR</em></code></dt>
  358.  
  359.       <dd>Define to be the subdirectory under users' home
  360.       directories where suEXEC access should be allowed. All
  361.       executables under this directory will be executable by suEXEC
  362.       as the user so they should be "safe" programs. If you are
  363.       using a "simple" UserDir directive (ie. one without a "*" in
  364.       it) this should be set to the same value. suEXEC will not
  365.       work properly in cases where the UserDir directive points to
  366.       a location that is not the same as the user's home directory
  367.       as referenced in the passwd file. Default value is
  368.       "public_html".<br />
  369.        If you have virtual hosts with a different UserDir for each,
  370.       you will need to define them to all reside in one parent
  371.       directory; then name that parent directory here. <strong>If
  372.       this is not defined properly, "~userdir" cgi requests will
  373.       not work!</strong></dd>
  374.  
  375.       <dt><code>--with-suexec-docroot=<em>DIR</em></code></dt>
  376.  
  377.       <dd>Define as the DocumentRoot set for Apache. This will be
  378.       the only hierarchy (aside from UserDirs) that can be used for
  379.       suEXEC behavior. The default directory is the <code>--datadir</code>
  380.       value with the suffix "/htdocs", <em>e.g.</em> if you configure
  381.       with "<code>--datadir=/home/apache</code>" the directory
  382.       "/home/apache/htdocs" is used as document root for the suEXEC
  383.       wrapper.</dd>
  384.  
  385.       <dt><code>--with-suexec-uidmin=<em>UID</em></code></dt>
  386.  
  387.       <dd>Define this as the lowest UID allowed to be a target user
  388.       for suEXEC. For most systems, 500 or 100 is common. Default
  389.       value is 100.</dd>
  390.  
  391.       <dt><code>--with-suexec-gidmin=<em>GID</em></code></dt>
  392.  
  393.       <dd>Define this as the lowest GID allowed to be a target
  394.       group for suEXEC. For most systems, 100 is common and
  395.       therefore used as default value.</dd>
  396.  
  397.       <dt><code>--with-suexec-logfile=<em>FILE</em></code></dt>
  398.  
  399.       <dd>This defines the filename to which all suEXEC
  400.       transactions and errors are logged (useful for auditing and
  401.       debugging purposes). By default the logfile is named
  402.       "suexec_log" and located in your standard logfile directory
  403.       (<code>--logfiledir</code>).</dd>
  404.  
  405.       <dt><code>--with-suexec-safepath=<em>PATH</em></code></dt>
  406.  
  407.       <dd>Define a safe PATH environment to pass to CGI
  408.       executables. Default value is
  409.       "/usr/local/bin:/usr/bin:/bin".</dd>
  410.     </dl>
  411.  
  412.     <p><strong>Checking your suEXEC
  413.     setup</strong><br />
  414.      Before you compile and install the suEXEC wrapper you can
  415.     check the configuration with the <code>--layout</code> option.<br />
  416.      Example output:</p>
  417.  
  418. <example>
  419.     suEXEC setup:<br />
  420.             suexec binary: /usr/local/apache2/sbin/suexec<br />
  421.             document root: /usr/local/apache2/share/htdocs<br />
  422.            userdir suffix: public_html<br />
  423.                   logfile: /usr/local/apache2/var/log/suexec_log<br />
  424.                 safe path: /usr/local/bin:/usr/bin:/bin<br />
  425.                 caller ID: www<br />
  426.           minimum user ID: 100<br />
  427.          minimum group ID: 100<br />
  428. </example>
  429.  
  430.     <p><strong>Compiling and installing the suEXEC
  431.     wrapper</strong><br />
  432.      If you have enabled the suEXEC feature with the
  433.     <code>--enable-suexec</code> option the <code>suexec</code> binary
  434.     (together with Apache itself) is automatically built if you execute
  435.     the <code>make</code> command.<br />
  436.      After all components have been built you can execute the
  437.     command <code>make install</code> to install them. The binary image
  438.     <code>suexec</code> is installed in the directory defined by the
  439.     <code>--sbindir</code> option. The default location is
  440.     "/usr/local/apache2/sbin/suexec".<br />
  441.      Please note that you need <strong><em>root
  442.     privileges</em></strong> for the installation step. In order
  443.     for the wrapper to set the user ID, it must be installed as
  444.     owner <code><em>root</em></code> and must have the setuserid
  445.     execution bit set for file modes.</p>
  446.  
  447.     <p><strong>Setting paranoid permissions</strong><br />
  448.     Although the suEXEC wrapper will check to ensure that its
  449.     caller is the correct user as specified with the
  450.     <code>--with-suexec-caller</code> configure option, there is
  451.     always the possibility that a system or library call suEXEC uses
  452.     before this check may be exploitable on your system. To counter
  453.     this, and because it is best-practise in general, you should use 
  454.     filesystem permissions to ensure that only the group Apache 
  455.     runs as may execute suEXEC.</p>
  456.  
  457.     <p>If for example, your web-server is configured to run as:</p>
  458.  
  459. <example>
  460.     User www<br />
  461.     Group webgroup<br />
  462. </example>
  463.  
  464.     <p>and <code>suexec</code> is installed at
  465.     "/usr/local/apache2/sbin/suexec", you should run:</p>
  466.  
  467. <example>
  468.     chgrp webgroup /usr/local/apache2/bin/suexec<br />
  469.     chmod 4750 /usr/local/apache2/bin/suexec<br />
  470. </example>
  471.  
  472.     <p>This will ensure that only the group Apache runs as can even
  473.     execute the suEXEC wrapper.</p>
  474. </section>
  475.  
  476. <section id="enable"><title>Enabling & Disabling
  477.     suEXEC</title>
  478.  
  479.     <p>Upon startup of Apache, it looks for the file
  480.     <code>suexec</code> in the directory defined by the
  481.     <code>--sbindir</code> option (default is
  482.     "/usr/local/apache/sbin/suexec"). If Apache finds a properly
  483.     configured suEXEC wrapper, it will print the following message
  484.     to the error log:</p>
  485.  
  486. <example>
  487.     [notice] suEXEC mechanism enabled (wrapper: <em>/path/to/suexec</em>)
  488. </example>
  489.  
  490.     <p>If you don't see this message at server startup, the server is
  491.     most likely not finding the wrapper program where it expects
  492.     it, or the executable is not installed <em>setuid root</em>.</p>
  493.  
  494.      <p>If you want to enable the suEXEC mechanism for the first time
  495.     and an Apache server is already running you must kill and
  496.     restart Apache. Restarting it with a simple HUP or USR1 signal
  497.     will not be enough. </p>
  498.      <p>If you want to disable suEXEC you should kill and restart
  499.     Apache after you have removed the <code>suexec</code> file. </p>
  500. </section>
  501.  
  502. <section id="usage"><title>Using suEXEC</title>
  503.  
  504.     <p><strong>Virtual Hosts:</strong><br /> One way to use the suEXEC
  505.     wrapper is through the <directive
  506.     module="mod_suexec">SuexecUserGroup</directive> directive in
  507.     <directive module="core">VirtualHost</directive> definitions.  By
  508.     setting this directive to values different from the main server
  509.     user ID, all requests for CGI resources will be executed as the
  510.     <em>User</em> and <em>Group</em> defined for that <directive
  511.     module="core" type="section">VirtualHost</directive>. If this
  512.     directive is not specified for a <directive module="core"
  513.     type="section">VirtualHost</directive> then the main server userid
  514.     is assumed.</p>
  515.  
  516.     <p><strong>User directories:</strong><br />
  517.      The suEXEC wrapper can also be used to execute CGI programs as
  518.     the user to which the request is being directed. This is
  519.     accomplished by using the "<strong><code>~</code></strong>"
  520.     character prefixing the user ID for whom execution is desired.
  521.     The only requirement needed for this feature to work is for CGI
  522.     execution to be enabled for the user and that the script must
  523.     meet the scrutiny of the <a href="#model">security checks</a>
  524.     above.</p>
  525. </section>
  526.  
  527. <section id="debug"><title>Debugging suEXEC</title>
  528.  
  529.     <p>The suEXEC wrapper will write log information
  530.     to the file defined with the <code>--with-suexec-logfile</code>
  531.     option as indicated above. If you feel you have configured and
  532.     installed the wrapper properly, have a look at this log and the
  533.     error_log for the server to see where you may have gone astray.</p>
  534.  
  535. </section>
  536.  
  537. <section id="jabberwock"><title>Beware the Jabberwock:
  538.     Warnings & Examples</title>
  539.  
  540.     <p><strong>NOTE!</strong> This section may not be
  541.     complete. For the latest revision of this section of the
  542.     documentation, see the Apache Group's <a
  543.     href="http://httpd.apache.org/docs-2.0/suexec.html">Online
  544.     Documentation</a> version.</p>
  545.  
  546.     <p>There are a few points of interest regarding
  547.     the wrapper that can cause limitations on server setup. Please
  548.     review these before submitting any "bugs" regarding suEXEC.</p>
  549.  
  550.     <ul>
  551.       <li><strong>suEXEC Points Of Interest</strong></li>
  552.  
  553.       <li>
  554.         Hierarchy limitations 
  555.  
  556.         <p class="indent">
  557.           For security and efficiency reasons, all suEXEC requests
  558.           must remain within either a top-level document root for
  559.           virtual host requests, or one top-level personal document
  560.           root for userdir requests. For example, if you have four
  561.           VirtualHosts configured, you would need to structure all
  562.           of your VHosts' document roots off of one main Apache
  563.           document hierarchy to take advantage of suEXEC for
  564.           VirtualHosts. (Example forthcoming.)
  565.         </p>
  566.       </li>
  567.  
  568.       <li>
  569.         suEXEC's PATH environment variable 
  570.  
  571.         <p class="indent">
  572.           This can be a dangerous thing to change. Make certain
  573.           every path you include in this define is a
  574.           <strong>trusted</strong> directory. You don't want to
  575.           open people up to having someone from across the world
  576.           running a trojan horse on them.
  577.         </p>
  578.       </li>
  579.  
  580.       <li>
  581.         Altering the suEXEC code 
  582.  
  583.         <p class="indent">
  584.           Again, this can cause <strong>Big Trouble</strong> if you
  585.           try this without knowing what you are doing. Stay away
  586.           from it if at all possible.
  587.         </p>
  588.       </li>
  589.     </ul>
  590.  
  591. </section>
  592.  
  593. </manualpage>
  594.