Skip to content
Thomas Young-Audet edited this page Jun 8, 2020 · 1 revision

TWA-0209

Message

"X-Frame-Options missing"

Explanation

twa detected a missing Content-Type header which means that this website could be at risk of a MIME-sniffing attacks.

Remediation

When serving resources, make sure you send the content-type header to appropriately match the type of the resource being served. For example, if you are serving an HTML page, you should send the HTTP header: Content-Type: text/html

Add the X-Content-Type-Options header with a value of "nosniff" to inform the browser to trust what the site has sent is the appropriate content-type, and to not attempt "sniffing" the real content-type: X-Content-Type-Options: nosniff

Clone this wiki locally