Google 如何通过其新的 Webfonts 服务解决 Firefox 中的跨站点字体使用安全问题?

发布于 2024-10-10 10:26:46 字数 435 浏览 4 评论 0原文

Google 提供了网络字体 - http://code.google.com/webfonts

它们可以在 Firefox 中使用,但 FF 具有阻止跨站点字体使用的安全策略 - http:// /hacks.mozilla.org/2009/06/beautiful-fonts-with-font-face/(搜索跨站点字体使用)。

任何人都可以猜测他们是如何做到这一点的吗?他们使用“访问控制标头”吗?有没有办法测试一下?

添加访问控制标头是否存在任何安全问题?

提前致谢。

Google offers webfonts - http://code.google.com/webfonts

They work in Firefox, but FF has a security policy to stop cross-site font usage - http://hacks.mozilla.org/2009/06/beautiful-fonts-with-font-face/ (search for Cross-Site Font Usage).

Can anyone hazard a guess how they do this? Do they use 'access control headers'? Is there a way to test for it?

And are there any security concerns with adding access control headers?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-10-17 10:26:46

是的,他们使用访问控制标头。您可以使用实时 HTTP 标头来验证这一点:

  1. 转到字体页面,例如:http://code.google.com/webfonts/family?family=Droid+Sans
  2. 点击“使用此字体”
  3. 转到 HTML 代码段中的 href,例如:http://code.google.com/webfonts/family?family=Droid+Sans
  4. 启用实时 HTTP 标头
  5. 从您在步骤 3 中编写的 CSS 转到 src。这将下载字体,您可以在响应标头中看到 Access-Control-Allow-Origin: *

Yes, they use access control headers. You can use Live HTTP Headers to verify this:

  1. Go to the page for a font, eg: http://code.google.com/webfonts/family?family=Droid+Sans
  2. Click on "Use this font"
  3. Go to the href in the HTML snippet, eg: http://code.google.com/webfonts/family?family=Droid+Sans
  4. Enable Live HTTP Headers
  5. Go to the src from the CSS that you pened in step 3. This will download the font and you can see that Access-Control-Allow-Origin: * is in the response headers.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文