summaryrefslogtreecommitdiff
path: root/APACHE_1_3_42/htdocs/manual/misc/security_tips.html
blob: fb5d2849bcef872f0ebd42de74798064a6956a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta name="generator" content="HTML Tidy, see www.w3.org" />

    <title>Apache HTTP Server: Security Tips</title>
  </head>
  <!-- Background white, links blue (unvisited), navy (visited), red (active) -->

  <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
  vlink="#000080" alink="#FF0000">
    <!--#include virtual="header.html" -->

    <h1 align="CENTER">Security Tips for Server Configuration</h1>

    <ul>
      <li><a href="#serverroot">Permissions on ServerRoot
      Directories</a></li>

      <li><a href="#ssi">Server Side Includes</a></li>

      <li><a href="#nsaliasedcgi">Non Script Aliased CGI</a></li>

      <li><a href="#saliasedcgi">Script Aliased CGI</a></li>

      <li><a href="#cgi">CGI in General</a></li>

      <li><a href="#dynamic">Other sources of dynamic content</a></li>

      <li><a href="#systemsettings">Protecting System
      Settings</a></li>

      <li><a href="#protectserverfiles">Protect Server Files by
      Default</a></li>
    </ul>
    <hr />

    <p>Some hints and tips on security issues in setting up a web
    server. Some of the suggestions will be general, others
    specific to Apache.</p>
    <hr />

    <h2><a id="serverroot" name="serverroot">Permissions on
    ServerRoot Directories</a></h2>

    <p>In typical operation, Apache is started by the root user,
    and it switches to the user defined by the <a
    href="../mod/core.html#user"><strong>User</strong></a>
    directive to serve hits. As is the case with any command that
    root executes, you must take care that it is protected from
    modification by non-root users. Not only must the files
    themselves be writeable only by root, but also the
    directories and parents of all directories. For example, if
    you choose to place ServerRoot in
    <code>/usr/local/apache</code> then it is suggested that you
    create that directory as root, with commands like these:</p>

    <blockquote>
<pre>
    mkdir /usr/local/apache
    cd /usr/local/apache
    mkdir bin conf logs
    chown 0 . bin conf logs
    chgrp 0 . bin conf logs
    chmod 755 . bin conf logs
</pre>
    </blockquote>
    It is assumed that /, /usr, and /usr/local are only modifiable
    by root. When you install the httpd executable, you should
    ensure that it is similarly protected: 

    <blockquote>
<pre>
    cp httpd /usr/local/apache/bin
    chown 0 /usr/local/apache/bin/httpd
    chgrp 0 /usr/local/apache/bin/httpd
    chmod 511 /usr/local/apache/bin/httpd
</pre>
    </blockquote>

    <p>You can create an htdocs subdirectory which is modifiable by
    other users -- since root never executes any files out of
    there, and shouldn't be creating files in there.</p>

    <p>If you allow non-root users to modify any files that root
    either executes or writes on then you open your system to root
    compromises. For example, someone could replace the httpd
    binary so that the next time you start it, it will execute some
    arbitrary code. If the logs directory is writeable (by a
    non-root user), someone could replace a log file with a symlink
    to some other system file, and then root might overwrite that
    file with arbitrary data. If the log files themselves are
    writeable (by a non-root user), then someone may be able to
    overwrite the log itself with bogus data.</p>
    <hr />

    <h2><a id="ssi" name="ssi">Server Side Includes</a></h2>

    <p>Server Side Includes (SSI) present a server administrator
    with several potential security risks.</p>

    <p>The first risk is the increased load on the server. All
    SSI-enabled files have to be parsed by Apache, whether or not
    there are any SSI directives included within the files. While
    this load increase is minor, in a shared server environment it
    can become significant.</p>

    <p>SSI files also pose the same risks that are associated with
    CGI scripts in general. Using the "exec cmd" element,
    SSI-enabled files can execute any CGI script or program under
    the permissions of the user and group Apache runs as, as
    configured in httpd.conf. That should definitely give server
    administrators pause.</p>

    <p>There are ways to enhance the security of SSI files while
    still taking advantage of the benefits they provide.</p>

    <p>To isolate the damage a wayward SSI file can cause, a server
    administrator can enable <a
    href="../suexec.html">suexec</a> as described in the <a
    href="#cgi">CGI in General</a> section.</p>

    <p>Enabling SSI for files with .html or .htm extensions can be
    dangerous. This is especially true in a shared, or high
    traffic, server environment. SSI-enabled files should have a
    separate extension, such as the conventional .shtml. This helps
    keep server load at a minimum and allows for easier management
    of risk.</p>

    <p>Another solution is to disable the ability to run scripts
    and programs from SSI pages. To do this, replace
    <code>Includes</code> with <code>IncludesNOEXEC</code> in the
    <a href="../mod/core.html#options">Options</a> directive. Note
    that users may still use &lt;--#include virtual="..." --&gt; to
    execute CGI scripts if these scripts are in directories
    designated by a <a
    href="../mod/mod_alias.html#scriptalias">ScriptAlias</a>
    directive.</p>
    <hr />

    <h2><a id="nsaliasedcgi" name="nsaliasedcgi">Non Script Aliased
    CGI</a></h2>

    <p>Allowing users to execute <strong>CGI</strong> scripts in
    any directory should only be considered if;</p>

    <ol>
      <li>You trust your users not to write scripts which will
      deliberately or accidentally expose your system to an
      attack.</li>

      <li>You consider security at your site to be so feeble in
      other areas, as to make one more potential hole
      irrelevant.</li>

      <li>You have no users, and nobody ever visits your
      server.</li>
    </ol>
    <hr />

    <h2><a id="saliasedcgi" name="saliasedcgi">Script Aliased
    CGI</a></h2>

    <p>Limiting <strong>CGI</strong> to special directories gives
    the admin control over what goes into those directories. This
    is inevitably more secure than non script aliased CGI, but
    <strong>only if users with write access to the directories are
    trusted</strong> or the admin is willing to test each new CGI
    script/program for potential security holes.</p>

    <p>Most sites choose this option over the non script aliased
    CGI approach.</p>
    <hr />

    <h2><a id="cgi" name="cgi">CGI in General</a></h2>

    <p>Always remember that you must trust the writers of the CGI
    script/programs or your ability to spot potential security
    holes in CGI, whether they were deliberate or accidental.</p>

    <p>All the CGI scripts will run as the same user, so they have
    potential to conflict (accidentally or deliberately) with other
    scripts <em>e.g.</em> User A hates User B, so he writes a
    script to trash User B's CGI database. One program which can be
    used to allow scripts to run as different users is <a
    href="../suexec.html">suEXEC</a> which is included with Apache
    as of 1.2 and is called from special hooks in the Apache server
    code. Another popular way of doing this is with <a
    href="http://wwwcgi.umr.edu/~cgiwrap/">CGIWrap</a>.</p>
    <hr />

    <h2><a id="dynamic" name="dynamic">Other sources of dynamic
    content</a></h2>

<p>Embedded scripting options which run as part of the server itself, such
as mod_php, mod_perl, mod_tcl, and mod_python, run under the identity of
the server itself (see the <a href="../mod/core.html#user">User</a>
directive), and therefore scripts executed by these engines
potentially can access anything the server user can. Some scripting
engines may provide restrictions, but it is better to be safe and assume
not.</p>
<hr />

    <h2><a id="systemsettings" name="systemsettings">Protecting
    System Settings</a></h2>

    <p>To run a really tight ship, you'll want to stop users from
    setting up <code>.htaccess</code> files which can override
    security features you've configured. Here's one way to do
    it.</p>

    <p>In the server configuration file, put</p>

    <blockquote>
      <code>&lt;Directory /&gt;<br />
       AllowOverride None<br />
       &lt;/Directory&gt;<br />
      </code>
    </blockquote>

    <p>This prevents the use of <code>.htaccess</code> files in all
    directories apart from those specifically enabled.</p>
    <hr />

    <h2><a id="protectserverfiles"
    name="protectserverfiles">Protect Server Files by
    Default</a></h2>

    <p>One aspect of Apache which is occasionally misunderstood is
    the feature of default access. That is, unless you take steps
    to change it, if the server can find its way to a file through
    normal URL mapping rules, it can serve it to clients.</p>

    <p>For instance, consider the following example:</p>

    <ol>
      <li><samp># cd /; ln -s / public_html</samp></li>

      <li>Accessing <samp>http://localhost/~root/</samp></li>
    </ol>

    <p>This would allow clients to walk through the entire
    filesystem. To work around this, add the following block to
    your server's configuration:</p>
<pre>
 &lt;Directory /&gt;
     Order Deny,Allow
     Deny from all
 &lt;/Directory&gt;
</pre>

    <p>This will forbid default access to filesystem locations. Add
    appropriate <a
    href="../mod/core.html#directory"><samp>&lt;Directory&gt;</samp></a>
    blocks to allow access only in those areas you wish. For
    example,</p>
<pre>
 &lt;Directory /usr/users/*/public_html&gt;
     Order Deny,Allow
     Allow from all
 &lt;/Directory&gt;
 &lt;Directory /usr/local/httpd&gt;
     Order Deny,Allow
     Allow from all
 &lt;/Directory&gt;
</pre>

    <p>Pay particular attention to the interactions of <a
    href="../mod/core.html#location"><samp>&lt;Location&gt;</samp></a>
    and <a
    href="../mod/core.html#directory"><samp>&lt;Directory&gt;</samp></a>
    directives; for instance, even if <samp>&lt;Directory
    /&gt;</samp> denies access, a <samp>&lt;Location /&gt;</samp>
    directive might overturn it.</p>

    <p>Also be wary of playing games with the <a
    href="../mod/mod_userdir.html#userdir">UserDir</a> directive;
    setting it to something like <samp>"./"</samp> would have the
    same effect, for root, as the first example above. If you are
    using Apache 1.3 or above, we strongly recommend that you
    include the following line in your server configuration
    files:</p>

    <dl>
      <dd><samp>UserDir&nbsp;disabled&nbsp;root</samp></dd>
    </dl>
    <hr />

    <p>Please send any other useful security tips to The Apache
    Group by filling out a <a
    href="http://bugs.apache.org/">problem report</a>. If you are
    confident you have found a security bug in the Apache source
    code itself, <a
    href="http://httpd.apache.org/bug_report.html">please let us
    know</a>.</p>

    <p><!--#include virtual="footer.html" --></p>
  </body>
</html>