Server Limits for Apache Security - Changing the Server Header Field (
Page 4 of 4 )
The following sections discuss alternative approaches to changing the web server identity.
Changing the name in the source code
You can make modifications to change the web server identity in two places in the source code. One is in the include file httpd.h in Apache 1 (ap_release.h in Apache 2) where the version macros are defined:
#define SERVER_BASEVENDOR "Apache Group
"
#define SERVER_BASEPRODUCT "Apache"
#define SERVER_BASEREVISION "1.3.29"
#define SERVER_BASEVERSION SERVER_BASEPRODUCT "/" SERVER_BASEREVISION
#define SERVER_PRODUCT SERVER_BASEPRODUCT
#define SERVER_REVISION SERVER_BASEREVISION
#define SERVER_VERSION SERVER_PRODUCT "/" SERVER_REVISION
Apache Benchmark recommends that only the value of the
SERVER_BASEPRODUCT
macro be changed, allowing the other information such as the version number to remain in the code so it can be used later, for example, for web server version identi
fication (by way of code audit, not from the outside). If you decide to follow this recommendation, the
ServerTokens
directive must be set to
ProductOnly
, as discussed earlier in this chapter.
The reason Apache Benchmark recommends changing just one macro is because some modules (such as mod_ssl) are made to work only with a specific version of the Apache web server. To ensure correct operation, these modules check the Apache version number (contained in the
SERVER_BASEVERSION
macro) and refuse to run if the version number is different from what is expected.
A different approach for changing the name in a source file is to replace the
ap_set_version()
function, which is responsible for construction of the server name in the first place. For Apache 1, replace the existing function (in http_main.c) with one like the following, specifying whatever server name you wish:
static void ap_set_version(void)
{
/* set the server name */
ap_add_version_component("Microsoft-IIS/5.0");
/* do not allow other modules to add to it */
version_locked++;
}
For Apache 2, replace the function (defined in core.c):
static void ap_set_version(apr_pool_t *pconf)
{
/* set the server name */
ap_add_version_component(pconf, "Microsoft-IIS/5.0");
/* do not allow other modules to add to it */
version_locked++;
}
Changing the name using mod_security
Changing the source code can be tiresome, especially if it is done repeatedly. A different approach to changing the name of the server is to use a third-party module, mod_security (described in detail in Chapter 12). For this approach to work, we must allow Apache to reveal its full identity, and then instruct mod_security to change the identity to something else. The following directives can be added to Apache configuration:
# Reveal full identity (standard Apache directive
)
ServerTokens Full
# Replace the server name (mod_security directive)
SecServerSignature "Microsoft-IIS/5.0"
Apache modules are not allowed to change the name of the server completely, but mod_security works by finding where the name is kept in memory and overwriting the text directly. The
ServerTokens
directive must be set to
Full
to ensure the web server allocates a large enough space for the name, giving mod_security enough space to make its changes later.
Changing the name using mod_headers with Apache 2
The mod_headers module is improved in Apache 2 and can change response headers. In spite of that, you cannot use it to change the two crucial response headers, Server and Date. But the approach does work when the web server is working in a reverse proxy mode. In that case, you can use the following configuration:
Header set Server "Microsoft-IIS/5.0"
However, there is one serious problem with this. Though the identity change works in normal conditions, mod_headers is not executed in exceptional circumstances. So, for example, if you make an invalid request to the reverse proxy and force it to respond with status code
400
(“Bad request”), the response will include the
Server
header containing the true identity of the reverse proxy server.
Please check back next week for the continuation of this article.