如何在.net core 2.0中删除x-powered-by标头

时间:2017-08-25 13:37:53

标签: c# azure security

我尝试使用这个中间件:

public class SecurityHeadersMiddleware
{
    private readonly RequestDelegate next;

    public SecurityHeadersMiddleware(RequestDelegate next)
    {
        this.next = next;
    }

    public async Task Invoke(HttpContext context)
    {
        context.Response.OnStarting(state =>
        {
            var ctx = (HttpContext)state;

            if (!ctx.Response.Headers.ContainsKey("Arr-Disable-Session-Affinity"))
            {
                ctx.Response.Headers.Add("Arr-Disable-Session-Affinity", "True"); // Disables the Azure ARRAffinity cookie
            }

            if (ctx.Response.Headers.ContainsKey("Server"))
            {
                ctx.Response.Headers.Remove("Server"); // For security reasons
            }

            if (ctx.Response.Headers.ContainsKey("x-powered-by") || ctx.Response.Headers.ContainsKey("X-Powered-By"))
            {
                ctx.Response.Headers.Remove("x-powered-by");
                ctx.Response.Headers.Remove("X-Powered-By");
            }

            if (!ctx.Response.Headers.ContainsKey("X-Frame-Options"))
            {
                ctx.Response.Headers.Add("X-Frame-Options", "DENY");
            }

            return Task.FromResult(0);
        }, context);

        await next(context);
    }
}

x-powered-by仍然存在于响应标题中,表示asp.net

4 个答案:

答案 0 :(得分:22)

据我所知,使用请求过滤模块可以删除这些标头,该模块是IIS的一部分。

要删除标题,您需要在您的网站上存储web.config文件,其中包含以下内容:

<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <!-- To customize the asp.net core module uncomment and edit the following section. 
  For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->

  <system.webServer>
    <handlers>
      <remove name="aspNetCore"/>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
    </handlers>
    <aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
    <httpProtocol>
      <customHeaders>
        <remove name="X-Powered-By" />
      </customHeaders>
    </httpProtocol>
  </system.webServer>


</configuration>

将此web.config添加到您的网络核心应用程序的根文件夹中。

然后它将删除x-powered-by标头。

结果如下:

enter image description here

答案 1 :(得分:19)

  • 删除&#34;服务器:Kestrel&#34;从响应标题中,您需要告诉Kestral删除其标题

- 。NET Core 1

 var host = new WebHostBuilder()
        .UseKestrel(c => c.AddServerHeader = false)
        .UseContentRoot(Directory.GetCurrentDirectory())
        .UseIISIntegration()
        .UseStartup<Startup>()
        .Build();

-NET Core 2

WebHost.CreateDefaultBuilder(args)
               .UseKestrel(c => c.AddServerHeader = false)
               .UseStartup<Startup>()
               .Build();

答案 2 :(得分:1)

如果您不想在ASP.NET Core解决方案中创建web.config文件,则可以在IIS管理器中删除X-Powered-By标头。

点击<ServerName> --> HTTP Response Headers --> X-Powered-By并选择Remove操作。

IIS

这将删除该服务器上所有网站的标题。很好,因为您为什么要首先共享该信息?

答案 3 :(得分:0)

作为上述答案的替代选项,您可以使用configuration transformation。这样,web.config仍将通过dotnet发布者sdk生成,但可以与特定的标记(例如标头删除)混合。

在项目的根目录中,这样创建一个新的web.Release.config文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <location>

    <!-- To customize the asp.net core module uncomment and edit the following section. 
    For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->
    <system.webServer>
      <httpProtocol xdt:Transform="InsertIfMissing">
        <customHeaders>
          <remove name="X-Powered-By" />
        </customHeaders>
      </httpProtocol>
    </system.webServer>

  </location>
</configuration>

请注意,这是一个转换文件,而不是实际的web.config文件。