Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to remove "Server" response header from IIS7? There are some articles showing that using HttpModules we can achieve the same thing. This will be helpful if we don't have admin right to server. Also I don't want to write ISAPI filter.

I have admin rights to my server. So I don't want to do the above stuff. So, please help me to do the same.

share|improve this question

9 Answers

In IIS7 you have to use an HTTP module. Build the following as a class library in VS:

namespace StrongNamespace.HttpModules
{
  public class CustomHeaderModule : IHttpModule
  { 
    public void Init(HttpApplication context)
    {
      context.PreSendRequestHeaders += OnPreSendRequestHeaders;
    } 

    public void Dispose() { } 

    void OnPreSendRequestHeaders(object sender, EventArgs e)
    {
      HttpContext.Current.Response.Headers.Set("Server", "Box of Bolts");
    }
  }
}

Then add the following to your web.config, or you configure it within IIS (if you configure within IIS, the assembly must be in the GAC).

<configuration>
  <system.webServer>
    <modules>
      <add name="CustomHeaderModule"
       type="StrongNamespace.HttpModules.CustomHeaderModule" />
    </modules>
  </system.webServer>
</configuration>
share|improve this answer
first answer I've seen that I wanted to upvote more than once. – quillbreaker Jul 31 '09 at 16:42
Excellent, I can also tweak this to remove the ETag header across my server farm. – devstuff Aug 20 '09 at 3:50
This causes a runtime error in casini... / ASP.NET Dev server – UpTheCreek Feb 3 '11 at 14:52
Modifying header values requires IIS7 Integrated Mode, however the exception is ignored unless another exception is thrown in the context of the request. Per the title, the question was targeted at IIS7, not casini. – lukiffer Feb 3 '11 at 17:33
1  
@UpTheCreek The ASP.Net dev server (Cassini) won't like that code; this blog post has a solution to it, though — you need to check that the HttpApplication, the HttpRequest, the HttpContext, and the HttpResponse are not null, as well as checking that HttpRequest.IsLocal is false. – Owen Blacker Sep 17 '12 at 14:29
show 1 more comment

Add this to your global.asax.cs:

protected void Application_PreSendRequestHeaders()
{
    Response.Headers.Remove("Server");
    Response.Headers.Remove("X-AspNet-Version");
    Response.Headers.Remove("X-AspNetMvc-Version");
}
share|improve this answer
I tried the registry option from @Richard above with no luck. I'm using Win 2008 R2 and the registry key was missing so I added a new DWORD key, which may have been incorrect. This option worked perfectly though. Thanks! – Ben Barreth Sep 15 '11 at 15:39
6  
Don't know why the http module answer is higher than this one, this one is much easier – PsychoDad Dec 2 '11 at 20:44
This is the simplest method I've found to remove the 'Server' header from IIS7 responses. Thanks. – Corgalore May 17 '12 at 14:46
1  
You might find you get a NullReferenceException in Cassini if you rely on HttpContext.Current. This blog post shows how to do so whilst avoiding breaking Cassini support, if that is important to you. – Owen Blacker Sep 17 '12 at 14:27
1  
@PsychoDad this works for ASP.NET requests only, not for static files like .css and .js – Max Toro Jan 25 at 17:06
show 3 more comments

use the IIS UrlRewrite 2.0

<outboundRules>
  <rule name="Remove RESPONSE_Server" >
    <match serverVariable="RESPONSE_Server" pattern=".+" />
    <action type="Rewrite" value="" />
  </rule>
</outboundRules>
share|improve this answer
1  
Note that this only blanks the Server header, it does not remove it. – giveme5minutes Oct 9 '12 at 15:28
1  
Thankfully, blanking it will be good enough to pass the penetration retest I have on this client site on Monday :) – Owen Blacker Jan 25 at 14:25

Try setting the HKLM\SYSTEM\CurrentControlSet\Services\HTTP\Parameters\DisableServerHeader registry entry to a REG_DWORD of 1.

share|improve this answer
Ran into an odd situation with our server farm where this registry setting seems to be the only change that works across all of the OS's (W2K8, W2K3) we're using, for both IIS6 and IIS7. – jerhewet Feb 8 '12 at 19:15
Frustratingly, this isn't making any difference for me, even after rebooting the virtual machine. We're running IIS 7.5 on Windows Server 2008 R2 Standard, "Version 6.1 (Build 7601: Service Pack 1)". Similarly, my OnPreSendRequestHeaders event handler (see above) is never firing, for some reason. – Owen Blacker Jan 25 at 11:27

UrlScan can also remove the server header by using AlternateServerName= under [options].

share|improve this answer

To remove the Server: header, go to Global.asax, find/create the Application_PreSendRequestHeaders event and add a line as follows (thanks to BK and this blog this will also not fail on the Cassini / local dev):

protected void Application_PreSendRequestHeaders(object sender, EventArgs e)
{
    // Remove the "Server" HTTP Header from response
    HttpApplication app = sender as HttpApplication;
    if (null != app && null != app.Request && !app.Request.IsLocal &&
        null != app.Context && null != app.Context.Response)
    {
        NameValueCollection headers = app.Context.Response.Headers;
        if (null != headers)
        {
            headers.Remove("Server");
        }
    }
}

If you want a complete solution to remove all related headers on Azure/IIS7 and also works with Cassini, see this link, which shows the best way to disable these headers without using HttpModules or URLScan.

share|improve this answer

Actually the coded modules and the Global.asax examples shown above only work for valid requests.

For example, add < on the end of your URL and you will get a "Bad request" page which still exposes the server header. A lot of developers overlook this.

The registry settings shown do not work either. URLScan is the ONLY way to remove the "server" header (at least in IIS 7.5).

share|improve this answer

If you just want to remove the header you can use a shortened version of lukiffer's answer:

using System.Web;

namespace Site
{
    public sealed class HideServerHeaderModule : IHttpModule
    {
        public void Dispose() { }

        public void Init(HttpApplication context)
        {
            context.PreSendRequestHeaders +=
            (sender, e) => HttpContext.Current.Response.Headers.Remove("Server");
        }
    }
}

And then in Web.config:

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <add name="CustomHeaderModule" type="Site.HideServerHeaderModule" />
  </modules>
</system.webServer>
share|improve this answer

Following up on eddiegroves' answer, depending on the version of URLScan, you may instead prefer RemoveServerHeader=1 under [options].

I'm not sure in which version of URLScan this option was added, but it has been available in version 2.5 and later.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.