versionFrom | versionTo |
---|---|
9.0.0 |
10.0.0 |
Checks if your site is allowed to be IFRAMEd by another site and thus would be susceptible to click-jacking.
This health check can be fixed by adding a header before the response is started.
Preferable you use a security library like NWebSec.
If you take a NuGet dependency on NWebsec.AspNetCore.Middleware/, you can use third extension methods on IApplicationBuilder
.
public class Startup
{
public void Configure(IApplicationBuilder app)
{
app.UseXfo(options => options.SameOrigin());
...
}
}
If you don't like to have a dependency on a third party library, you can add the following custom middleware to the request pipeline instead.
public class Startup
{
public void Configure(IApplicationBuilder app)
{
app.Use(async (context, next) =>
{
context.Response.Headers.Add("X-Frame-Options", "SAMEORIGIN");
await next();
});
...
}
}