vote up 5 vote down star
1

This question is more security related than programming related, sorry if it shouldn't be here.

I'm currently developing a web application and I'm curious as to why most websites don't mind displaying their exact server configuration in HTTP headers, like versions of Apache and PHP, with complete "mod_perl, mod_python, ..." listing and so on.

From a security point of view, I'd prefer that it would be impossible to find out if I'm running PHP on Apache, ASP.NET on IIS or even Rails on Lighttpd.

Obviously "obscurity is not security" but should I be worried at all that visitors know what version of Apache and PHP my server is running ? Is it good practice or totally unnecessary to hide this information ?

flag

40% accept rate
You could say it a different way: is it a good practice to expose server information in HTTP headers? – Michael Haren Dec 4 '08 at 1:24
@Michael - not really, since you have to make an effort to hide them - they're shown by default. – Draemon Dec 4 '08 at 1:51
I realize that (see my answer). I meant it more as a way to reverse the question. Given the choice to add those headers manually, everyone would say: "no! don't aid the villians!!1". But since they're on by default, its easy to say "don't worry about it, it's not a big deal". – Michael Haren Dec 4 '08 at 15:34

6 Answers

vote up 5 vote down

Hiding the information in the headers usually just slows down the lazy and ignorant villains. There are many ways to fingerprint a system.

link|flag
vote up 5 vote down

Prevailing wisdom is to remove the server ID and the version; better yet, change them to another legitimate server ID and version - that way the attacker goes off trying IIS vulnerabilites against apache or something like that. Might as well mislead the attacker.

link|flag
vote up 3 vote down

I think you usually see those headers because the systems send them by default.

I routinely remove them as they provide no real value and could, as you suggested reveal information about the server.

link|flag
So I guess the next SO question is, how do you remove HTTP headers? :P – alex Dec 4 '08 at 2:19
vote up 3 vote down

Running nmap -O -sV against an IP will give you the OS and service versions with a fairly high degree of accuracy. The only extra info you're giving away by having your server advertise that information is which modules you have loaded.

link|flag
vote up 2 vote down

It seems that some of the answers are missing an obvious advantage of turning off the headers.

Yes, you all are right; turning of the headers (and the statusline present e.g. at directory listings) does not stop an attacker from finding out what software you use.

However, turning this information off prevents malware which uses google to look for vulnerable systems from finding you.

tldr: Don't use it as a (or even as THE) security-measure, but as a measure to drive away unwanted traffic.

link|flag
vote up 2 vote down

I normally turn off Apache's long header version information with ServerTokens; it adds nothing useful.

One point which nobody has picked up on, is it looks like better security to a prospective client, pen testing company etc, if you're giving out less information from your web server.

So giving less information out boosts the perceived security (i.e. it shows you have actually thought about it and done something)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.