Remove Server Response Header IIS.

Server:  cloudflare
Server:
Microsoft-IIS/10.0
Modafinil for sale: <a href=" http://modafinilmd.store/# ">doctor-reviewed advice</a> - buy modafinil online
same-day Viagra shipping: <a href=" https://maxviagramd.com/# ">secure checkout Viagra</a> - Viagra without prescription
cheap Cialis online: <a href=" https://zipgenericmd.shop/# ">online Cialis pharmacy</a> - reliable online pharmacy Cialis
legal Modafinil purchase: <a href=" https://modafinilmd.store/# ">legal Modafinil purchase</a> - verified Modafinil vendors
Modafinil for sale: <a href=" http://modafinilmd.store/# ">safe modafinil purchase</a> - modafinil pharmacy
reliable online pharmacy Cialis: <a href=" http://zipgenericmd.com/# ">buy generic Cialis online</a> - buy generic Cialis online
buy modafinil online: <a href=" http://modafinilmd.store/# ">doctor-reviewed advice</a> - legal Modafinil purchase
https://maxviagramd.shop/# discreet shipping
safe modafinil purchase: <a href=" http://modafinilmd.store/# ">legal Modafinil purchase</a> - purchase Modafinil without prescription
purchase Modafinil without prescription <a href=" https://forum.beloader.com/home.php?mod=space&uid=1823560 ">buy modafinil online</a> or <a href=" http://www.opentrad.com/margen.php?direccion=gl-pt&inurl=modafinilmd.store/ ">legal Modafinil purchase</a>
https://maps.google.cl/url?sa=t&url=https://modafinilmd.store verified Modafinil vendors
[url=https://www.steinhaus-gmbh.de/redirect.php?lang=en&url=https://modafinilmd.store]buy modafinil online[/url] modafinil 2025 and [url=https://bbsdump.com/home.php?mod=space&uid=23219]purchase Modafinil without prescription[/url] modafinil 2025

1 답변

0 투표

Add this to your global.asax.cs:

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");
        }
    }
}
구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...