ServerTokens Prod, ServerSignature Off
I tend to forget the syntax every time, but one of the first things I do when I setup an Apache web server is add/edit these two directive in my httpd.conf:
ServerSignature Off ServerTokens Prod
The first one, ServerSignature Off
tells apache not to display the server version on error pages, or other pages it generates.
The second one ServerTokens Prod
tells apache to only return Apache in the Server header, returned on every page request.
Why do this?
I do this for security reasons. Its not a good idea to broadcast the versions of software your running. While it doesn't make your server any more secure, it may make you less of a target.
What if I am running IIS?
On IIS the Server
header does not give as much version detail as Apache, but it can let someone know what primary OS version you are running (eg Windows 2008, 2012, 2012 r2, etc).
One popular way to resolve this is to use the Microsoft URL Rewrite Module to create an outbound rule to rewrite the Server
header to a value of your choosing. Hat tip goes to Herman Zindler for posting the outbound rule configuration in the comments:
Precondition: <None>
Matching scope: Server Variable
Variable name: RESPONSE_Server
Variable value: Matches the Pattern
Using: Regular Expressions
Pattern: .*
Action type: Rewrite
Value: Whatever you want your server header to be.
Another option for IIS 7-8.5 is the StripHeaders IIS module. This option may potentially be more performant than using Url Rewrite (though I haven't tested that claim). You can find the source code here, and binaries here.
For older versions of IIS you can use Microsoft's Free URLScan tool, the latest version of this tool only supports up to IIS 7 (though it may still work on later versions, it is basically abandonware at this point).
What if my server header says Apache-Coyote/1.1?
This means that the header is coming from Tomcat, you can edit the value of the server header by editing server.xml
and adding or editing the server
attribute of the <Connector>
tags.
Like this? Follow me ↯
Tweet Follow @pfreitagServerTokens Prod, ServerSignature Off was first published on July 25, 2005.
If you like reading about security, http, servers, or apache then you might also like:
- HTTP Request Smuggling (HRS)
- Howto restrict what htaccess files can do on Apache
- Apache Security Patches on CentOS / RHEL
- Blocking .svn and .git Directories on Apache or IIS
- Fixing Apache (13)Permission denied: access to / 403 Forbidden
- Changing the ColdFusion CFIDE Scripts Location
- HTTP Strict Transport Security
- ColdFusion wsconfig Hotfix CVE-2009-1876 is for Apache Only
Want Security Advisories via Email?
Advisory Week is a new weekly email containing security advisories published by major software vendors (Adobe, Apple, Microsoft, etc).
Comments
Apache Web Server version 2.2.16 was detected on the host.
Have to think of something else :(
This is achievable via URLRewrite outbound rule as well for IIS 7.
http://blogs.msdn.com/b/benjaminperkins/archive/2012/11/02/change-or-modify-a-response-header-value-using-url-rewrite.aspx
That said, it only affects the Server header, one of two that HackmyCF will detect on a typical IIS-based installation of CF. The other it sees (and will require you to resolve) is the X-Powered-By: ASP.NET header, and Pete shows how to clear that in another technote here, http://www.petefreitag.com/item/722.cfm.