What is “X-Content-Type-Options=nosniff”?

I am doing some penetration testing on my localhost with OWASP ZAP, and it keeps reporting this message: The Anti-MIME-Sniffing header X-Content-Type-Options was not set to ‘nosniff’ This check is specific to Internet Explorer 8 and Google Chrome. Ensure each page sets a Content-Type header and the X-CONTENT-TYPE-OPTIONS if the Content-Type header is unknown I … Read more

Redirect from an HTML page

Is it possible to set up a basic HTML page to redirect to another page on load? 2 25 Try using: <meta http-equiv=”refresh” content=”0; url=http://example.com/” /> Note: Place it in the head section. Additionally for older browsers if you add a quick link in case it doesn’t refresh correctly: <p><a href=”http://example.com/”>Redirect</a></p> Will appear as Redirect … Read more