Removing/Hiding/Disabling excessive HTTP response headers in Azure/IIS7 without UrlScan
Asked Answered
M

5

89

I need to remove excessive headers (primarily to pass penetration testing). I have spent time looking at solutions that involve running UrlScan, but these are cumbersome as UrlScan needs to be installed each time an Azure instance is started.

There must be a good solution for Azure that does not involve deploying installers from startup.cmd.

I understand that the response headers are added in different places:

  • Server: added by IIS.
  • X-AspNet-Version: added by System.Web.dll at the time of Flush in HttpResponse class
  • X-AspNetMvc-Version: Added by MvcHandler in System.Web.dll.
  • X-Powered-By: added by IIS

Is there any way to configure (via web.config etc.?) IIS7 to remove/hide/disable the HTTP response headers to avoid the "Excessive Headers" warning at asafaweb.com, without creating an IIS module or deploying installers which need to be run each time an Azure instance starts?

Muscatel answered 9/10, 2012 at 16:1 Comment(0)
M
142

The following changes allow you to remove these HTTP response headers in Azure without writing a custom HttpModule.

Most of the information on the net is out of date, and involves UrlScan (which has since been integrated into IIS7, but with the RemoveServerHeader=1 option removed). Below is the neatest solution I've found (thanks to this blog, this answer, and this blog combined).

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

Edited April 2014: You can use the PreSendRequestHeaders and PreSendRequestContext events with native IIS modules, but do not use them with managed modules that implement IHttpModule. Setting these properties can cause issues with asynchronous requests. The correct version is to use BeginRequest event.

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        var application = sender as HttpApplication;
        if (application != null && application.Context != null)
        {
            application.Context.Response.Headers.Remove("Server");
        }
    }

To remove X-AspNet-Version, in the web.config find/create <system.web> and add:

  <system.web>
    <httpRuntime enableVersionHeader="false" />

    ...

To remove X-AspNetMvc-Version, go to Global.asax, find/create the Application_Start event and add a line as follows:

  protected void Application_Start()
  {
      MvcHandler.DisableMvcResponseHeader = true;
  }

To remove X-Powered-By, in the web.config find/create <system.webServer> and add:

  <system.webServer>
    <httpProtocol>
      <customHeaders>
        <remove name="X-Powered-By" />
      </customHeaders>
    </httpProtocol>

    ...
Muscatel answered 9/10, 2012 at 16:1 Comment(10)
According to hinting in VS, no need to null check Request, Response, or Response.HeadersBase
When used on IIS not Azure be aware that application pool has to be in Integrated mode. And .IsLocal should be removed when debugging locally.Aronoff
There's no need for "Yoda conditions" in C# - it doesn't allow assignment in a conditional, en.wikipedia.org/wiki/Yoda_ConditionsFalse
Any known issues with this and HttpCacheModule. Can we use PostReleaseRequestState for this in global.asax?Tenterhook
Thanks for the detail answer ,however i did try and followed up the steps but each time i scan the site using asafweb, it still mentions an issue about the excessive header (X-AspNet-Version). I even used the URLRewrite to remove this header. Are they any other possibilities of removing it?Wheelhorse
There is still the problem of requesting a non-existent file, e.g. "yoursite/foo.jpg". Since this request is not processed by MVC the response header "Server: IIS x.y" will still be there. One solution which works for Azure Web Sites (and apparently ONLY for azure web sites) is to add this under <system.webServer>: <security xdt:Transform="Insert"> <requestFiltering removeServerHeader="true"/> </security>Ignorance
This all is good except that removing Server tag from code doesn't give you the desired result with content files like scripts, images. You to use web.config setting as prodived below.Marthena
This new approach appears to remove the Microsoft-IIS/8.5 header!!Tenterhook
This solution works for IIS (ver 8) hosted apps. Instead of the code to remove the server header, I used the configuration attribute removeServerHeader. For more information: ozkary.com/2016/01/Remove-Unwanted-HTTP-Response-Headers.htmlSantamaria
@adrianh. try creating custom 404 for all kind of files.Synthesis
K
12

MSDN published this article on how to hide headers on Azure Websites. You can now hide the server from web.config by adding an entry to system.webServer

<security>
      <requestFiltering removeServerHeader ="true" />
</security>

VS will frown at the above as invalid though. The above link has code as pics, hard to find. MVC version is still hidden in application start as above, same for x-powered-by and .Net version.

Krasnoyarsk answered 11/1, 2014 at 16:39 Comment(2)
This may work for Azure, but not anywhere else. The comments on that article confimn this, as does my own testing. The answer by @giveme5minutes is the way that works.Someplace
Would be nice to know what was implemented to make this function :| Especially since URL SCAN previously implemented this out of the box.Tenterhook
G
6

There's also a package on NuGet that helps you achieve this through a few lines of config and no changes to code: NWebsec. The docs on removing version headers can be found here: https://github.com/NWebsec/NWebsec/wiki/Suppressing-version-headers

It's demoed here: http://www.nwebsec.com/HttpHeaders/VersionHeaders (in Azure)

Disclaimer: I'm the developer on the project.

Getupandgo answered 9/10, 2012 at 19:29 Comment(2)
"NWebsec helps you suppress almost all of these version headers, i.e. all but the Server: Microsoft-IIS/8.0 header." :( github.com/NWebsec/NWebsec/wiki/Suppressing-version-headersTenterhook
It moved from codeplex to GitHub (please update link github.com/NWebsec/NWebsec/wiki )Limber
K
6

Nick Evans' answer is perfect, but...

If you remove these headers for a security purpose, don't forget to change the ASP.NET Session coockie name ! Because it is easier to guess the language used or the server version when you see this :

enter image description here

To change the cookie name: (be creative)

<system.web>
  <sessionState cookieName="PHPSESSID" />
</system.web>
Klos answered 11/7, 2017 at 22:6 Comment(1)
Changing the cookie name has more benefits than just server technology exposure - e.g. reduces the risk of generic, bulk session harvestingAthenian
T
4

Rolling up the previous answers from @giveme5minutes and @AKhooli as they relate to Azure Websites plus a few other items the scanner wants to see, these are the changes that I made to make ASafaWeb happy with an Azure site.

It still complains about the Azure affinity header cookie not being https only but affinity is the type of cookie you do want replayed anyway, right?

<system.web>
    <compilation debug="false">
    <httpRuntime enableVersionHeader="false" />
    <httpCookies httpOnlyCookies="true" requireSSL="true" />    
    <customErrors mode="RemoteOnly" defaultRedirect="~/Error.aspx" />
</system.web>

<system.webServer>
    <httpProtocol>
      <customHeaders>
        <add name="X-Frame-Options" value="DENY" />
        <remove name="X-Powered-By" />
      </customHeaders>
    </httpProtocol>
    <security>
      <!--removes Azure headers-->
      <requestFiltering removeServerHeader="true" />
    </security>
</system.webServer>
Thelen answered 24/1, 2016 at 4:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.