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" Apache Benchmark recommends that only the value of theSERVER_BASEPRODUCTmacro 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 identification (by way of code audit, not from the outside). If you decide to follow this recommendation, theServerTokens directive must be set toProductOnly, 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 theSERVER_BASEVERSIONmacro) 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 theap_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) For Apache 2, replace the function (defined in core.c): static void ap_set_version(apr_pool_t *pconf) 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) 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. TheServerTokensdirective must be set toFullto 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 code400(“Bad request”), the response will include theServerheader containing the true identity of the reverse proxy server. Please check back next week for the continuation of this article.
blog comments powered by Disqus |
|
|
|
|
|
|
|