Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when auditing HTTP response headers on any web server or CDN for security hardening.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-12 | ✗→✓ | ▲ Improved | -4% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 50% | 0% |
| case-02 | ✓→✓ | = Same ✓ | -33% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 1% | 0% |
| case-04 | ✓→✓ | = Same ✓ | -16% | 0% |
Browsers that MIME-sniff can be tricked into executing malicious JavaScript uploaded as an image — even if the server sends Content-Type: image/png. nosniff forces the browser to honor the declared type.
X-Content-Type-Options: nosniff on all responses — the only valid value is nosniffContent-Type headers on all responses for defense in depthCheck whether the server sends an X-Content-Type-Options: nosniff header on responses. Verify the header is present on HTML pages, scripts, stylesheets, and API responses.
Add X-Content-Type-Options: nosniff to all HTTP responses. Configure it at the web server level (Nginx, Apache) or in your application framework, and verify with curl -I https://example.com.
Explain what MIME type sniffing is, how it can be exploited to execute malicious files, and how X-Content-Type-Options: nosniff prevents this attack.
Review server config, headers, forms, and integration points related to Set X-Content-Type-Options: nosniff. Flag exact responses, cookies, or browser behaviors that violate the rule, and verify them against the effective production-like response.
For full implementation details, code examples, and framework-specific guidance, see references/rule.md.
Rule page: https://frontendchecklist.io/en/rules/security/x-content-type
Other measured skills in the registry, with their headline benchmark lift.