How to set the Http X-XSS-Protection header
I doubt it will be just a meta tag. You may need to tell your web server that it is sending it as a real header.
In PHP you would do it like
header("X-XSS-Protection: 0"); In ASP.net:
Response.AppendHeader("X-XSS-Protection","0") In the Apache configuration:
Header set X-XSS-Protection 0 IIS has a property section for additional headers. It already has X-Powered-By: ASP.NET installed; you would simply add βX-XSS-Protection: 0β to the same location.
If you use .Net MVC, you can configure it through customHeaders in Web.Config.
To add these headers, go to the httpprotocol node and add these headers inside the customHeaders node.
<httpprotocol> <customheaders> <remove name="X-Powered-By"> <add name="X-XSS-Protection" value="1; mode=block"></add> </remove> </customheaders> </httpprotocol> I highly recommend this link, which explains how you can configure IIS protected headers in ASP.NET MVC: http://insiderattack.blogspot.com/2014/04/configuring-secure-iis-response-headers.html
In Apache you need to edit the configuration file, this file can be:
file / etc / apache 2 / apache2.conf
/etc/apache2/httpd.conf
In the file, you can add these lines at the end to enable HTTP Header XSS Protection:
<IfModule mod_headers.c> Header set X-XSS-Protection: "1; mode=block" </IfModule> Note: if mod_headers is external to the main Apache core (not compiled into Apache), you should use .so and not .c - i.e. <IfModule mod_headers.so>
After that, save the changes and restart apache with:
sudo service apache2 restart
or
sudo service httpd restart
Hope this helps! :)
# Turn on IE8-IE9 XSS prevention tools Header set X-XSS-Protection "1; mode=block" This header is exclusive to Internet Explorer 8 and 9, it includes cross-site scripting protection in IE 8 and IE 9, which is disabled by default, as this may potentially violate some websites. To enable the XSS filter, use the X-XSS-Protection header "1; mode = block". If you want this filter not to be enabled for your website, set the value of the headers to "0";