Ensure All Default Apache Content Is Removed (Manual)
Profile Applicability
- Level 2
Description
In previous recommendations, we have removed default content such as the Apache manuals and default CGI programs. However, if you want to further restrict information leakage about the web server, it is important that default content such as icons are not left on the web server.
Rationale
To identify the type of web servers and versions software installed it is common for attackers to scan for icons or special content specific to the server type and version. A simple request like http://example.com/icons/apache_pb2.png may tell the attacker that the server is Apache 2.4. Many icons are used primarily for auto indexing, which is also recommended to be disabled.
Audit
Perform the following step to determine if the recommended state is implemented:
Verify that there is no alias or directory access to the Apache icons directory in any of the Apache configuration files.
Remediation
Perform either of the following to implement the recommended state:
The default source build places the auto-index and icon configurations in the
extra/httpd-autoindex.conffile, so it can be disabled by leaving the include line commented out in the mainhttpd.conffile as shown below.# Fancy directory listings#Include conf/extra/httpd-autoindex.conf
Alternatively, the icon
aliasdirective and the directory access control configuration can be commented out as shown if present:# We include the /icons/ alias for FancyIndexed directory listings. If# you do not use FancyIndexing, you may comment this out.##Alias /icons/ "/var/www/icons/"#<Directory "/var/www/icons"># Options Indexes MultiViews FollowSymLinks# AllowOverride None# Order allow,deny# Allow from all#</Directory>
Default Value
The default source build does not enable access to the Apache icons.
CIS Controls
v8:
- 9.4 Restrict Unnecessary or Unauthorized Browser and Email Client Extensions
- Restrict, either through uninstalling or disabling, any unauthorized or unnecessary browser or email client plugins, extensions, and add-on applications.
v7:
- 13.2 Remove Sensitive Data or Systems Not Regularly Accessed by Organization
- Remove sensitive data or systems not regularly accessed by the organization from the network. These systems shall only be used as stand alone systems (disconnected from the network) by the business unit needing to occasionally use the system or completely virtualized and powered off until needed.
Profile
- Level 2