一、Content Security Policy - CSP
CSP
的实质就是白名单制度,开发者明确告诉客户端,哪些外部资源可以加载和执行,等同于提供白名单。它的实现和执行全部由浏览器完成,开发者只需通过以下两种方式进行配置即可:
- 通过 HTTP 头信息的
Content-Security-Policy
的字段 - 通过网页的
<meta>
标签
HTTP
1 | Content-Security-Policy: script-src 'self'; object-src 'none'; style-src cdn.example.org third-party.org; child-src https: |
meta
1 | <meta http-equiv="Content-Security-Policy" content="script-src 'self'; object-src 'none'; style-src cdn.example.org third-party.org; child-src https:"> |
上面代码中,CSP 做了如下配置:
- script-src:只信任当前域名
- object-src:不信任任何URL,即不加载任何资源
- style-src:只信任
cdn.example.org
和third-party.org
- child-src:必须使用HTTPS协议加载
- 其他资源:没有限制
二、各类资源限制
1 | script-src:外部脚本 |
1 | Content-Security-Policy: default-src 'self' |
注:如果同时设置某个单项限制和default-src
,某个单项限制会覆盖default-src
的值。
三、限制值
1 | 主机名:example.org,https://example.com:443 |
注:
- 多个值也可以并列,用空格分隔
- 如果同一个限制选项使用多次,只有第一次会生效
四、script-src 的特殊值
1 | unsafe-inline:允许执行页面内嵌的<script>标签和事件监听函数 |
nonce
值例子
1 | # 1、服务器发送网页的时候,告诉浏览器一个随机生成的token |
hash值例子
1 | # 1、服务器给出一个允许执行的代码的hash值 |
注:
- 计算hash值的时候,
<script>
标签不算在内 - 除了
script-src
选项,nonce值和hash值还可以用在style-src
选项,控制页面内嵌的样式表
微信公众号网页的信息
1 | Content-Security-Policy: script-src 'self' 'unsafe-inline' 'unsafe-eval' http://*.qq.com https://*.qq.com http://*.weishi.com https://*.weishi.com 'nonce-763410929';style-src 'self' 'unsafe-inline' http://*.qq.com https://*.qq.com;object-src 'self' http://*.qq.com https://*.qq.com;font-src 'self' data: http://*.qq.com https://*.qq.com http://fonts.gstatic.com https://fonts.gstatic.com;frame-ancestors 'self' http://wx.qq.com https://wx.qq.com http://wx2.qq.com https://wx2.qq.com http://wx8.qq.com https://wx8.qq.com http://web.wechat.com https://web.wechat.com http://web1.wechat.com https://web1.wechat.com http://web2.wechat.com https://web2.wechat.com http://sticker.weixin.qq.com https://sticker.weixin.qq.com http://bang.qq.com https://bang.qq.com http://app.work.weixin.qq.com https://app.work.weixin.qq.com http://work.weixin.qq.com https://work.weixin.qq.com http://finance.qq.com https://finance.qq.com http://gu.qq.com https://gu.qq.com http://wzq.tenpay.com https://wzq.tenpay.com;report-uri https://mp.weixin.qq.com/mp/fereport?action=csp_report |