X-XSS-Protection
2024年03月20日
一、认识
X-XSS-Protection
响应头是 Internet Explorer
,Chrome
和 Safari
的一个特性,当检测到跨站脚本攻击 (XSS
) 时,浏览器将停止加载页面。若网站设置了良好的 Content-Security-Policy
来禁用内联 JavaScript
(unsafe-inline
),现代浏览器不太需要这些保护,但其仍然可以为尚不支持 CSP
的旧版浏览器的用户提供保护。
二、语法
X-XSS-Protection: 0
X-XSS-Protection: 1
X-XSS-Protection: 1; mode=block
X-XSS-Protection: 1; report=<reporting-uri>