shoutingwei / frontend-learning

0 stars 0 forks source link

CSP是什么? #22

Closed shoutingwei closed 6 years ago

shoutingwei commented 6 years ago

使用"网页安全政策"(Content Security Policy,缩写 CSP)防止 XSS 攻击。CSP就是白名单制度,开发者明确告诉客户端,哪些外部资源可以加载和执行。它的实现和执行全部由浏览器完成,开发者只需提供配置。

CSP 大大增强了网页的安全性。攻击者即使发现了漏洞,也没法注入脚本,除非还控制了一台列入了白名单的可信主机。

两种方法可以启用 CSP。一种是通过 HTTP 头信息的Content-Security-Policy的字段。 eg

header=》Content-Security-Policy: script-src 'self'; object-src 'none';
style-src cdn.example.org third-party.org; child-src https:

另一种是通过网页的标签。 eg

meta=》<meta http-equiv="Content-Security-Policy" content="script-src 'self'; object-src 'none'; style-src cdn.example.org third-party.org; child-src https:">

以上配置的意思是 脚本:只信任当前域名

标签:不信任任何URL,即不加载任何资源 样式表:只信任cdn.example.org和third-party.org 框架(frame):必须使用HTTPS协议加载 其他资源:没有限制 ================== http://www.ruanyifeng.com/blog/2016/09/csp.html