security_related_headers.md
June 2, 2025 · View on GitHub
# Security related headers
The following headers protect the application against various attack types. Send them in all server responses unless the application you are working on has some specific needs:
- X-Frame-Options: SAMEORIGIN: Allow iframes only on the same domain. If you are also sending a Content Security Policy header it might not be necessary. In any case, it might still be a good idea to include it for legacy browsers that don't support CSP.
- X-Content-Type-Options: nosniff: Stops the browser from guessing the MIME type of a file.
- X-Download-Options: noopen: Instructs Internet Explorer not to open a download directly.