Firefox 和 UTF-16 编码

发布于 2024-12-16 20:11:36 字数 453 浏览 1 评论 0原文

我正在构建一个使用 UTF-16 编码的网站。这意味着每个文件(html,jsp)都以UTF-18编码,并且我在每个HTML页面的头部设置:

<meta http-equiv="content-type" content="text/html; charset=UTF-16">

我的索引页面由Chrom和IE正确显示。但是,Firefox 不呈现索引。它显示 2 个奇怪的字符和完整的索引页代码:

��<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-16"> ...

你知道原因吗?应该是编码的问题,但我不知道它位于哪里......

谢谢

I'm building a website with the encoding UTF-16. It means that every files (html,jsp) is encoded in UTF-18 and I set in the head of every HTML page :

<meta http-equiv="content-type" content="text/html; charset=UTF-16">

My index page is correctly displayed by Chrom and IE. However, firefox doesn't render the index. It displays 2 strange characters and the full index page code :

��<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-16"> ...

Do you know the reason? It should be a problem of encoding, but I don't know where it's located...

Thanks

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

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

发布评论

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

评论(2

浅忆流年 2024-12-23 20:11:37

(声明:我是负责 Firefox 中相关代码的开发人员。)

我正在构建一个使用 UTF-16 编码的网站。

请不要。简短的规则是:

  1. 切勿使用 UTF-16 进行交换。
  2. 始终使用 UTF-8 进行交换。
  3. 如果您违反规则 1 和 2 2.并且仍然使用UTF-16,至少使用BOM(正确的一个)。
  4. 但说真的,不要违反规则 1 和 2。

如果您在页面上包含用户提供的内容,那么使用 UTF-16 意味着您的网站很容易受到社会工程 XSS 的影响,至少在旧版浏览器中是这样。在旧版本中尝试此演示 Firefox(版本 20 或更低版本)或基于 Presto 的 Opera 版本。

为了避免该漏洞,请使用 UTF-8。

这意味着每个文件(html,jsp)都以UTF-18编码

哦。 :-)

我在每个 HTML 页面的头部设置:

仅当所使用的编码映射时,元标记才用作内部编码声明将元标记的字节转换为与 ASCII 相同的字节。 UTF-16 的情况并非如此。

你知道原因吗?

十六进制编辑器中没有完整的响应标头和原始响应正文。如上所述,一般解决方案是始终使用 UTF-8,并且永远不要在 HTTP 上使用 UTF-16。

如果您的内容采用 UTF-16 比 UTF-8 更紧凑的语言,则有两件事:

  1. 页面上的所有 HTML、JS 和 CSS 在 UTF-8 中都更紧凑。
  2. gzip 使差异消失。

(Disclosure: I’m the developer responsible for the relevant code in Firefox.)

I'm building a website with the encoding UTF-16.

Please don’t. The short rules are:

  1. Never use UTF-16 for interchange.
  2. Always use UTF-8 for interchange.
  3. If you break rules 1 & 2 and still use UTF-16, at least use the BOM (the right one).
  4. But seriously, don’t break rules 1 and 2.

If you include user-provided content on your pages, using UTF-16 means that your site is vulnerable to socially engineered XSS at least in older browsers. Try this demo in an old version of Firefox (version 20 or older) or in a Presto-based version of Opera.

To avoid the vulnerability, use UTF-8.

It means that every files (html,jsp) is encoded in UTF-18

Uh oh. :-)

and I set in the head of every HTML page :
<meta http-equiv="content-type" content="text/html; charset=UTF-16">

A meta tag works as an internal encoding declaration only when the encoding being used maps the bytes of the meta tag to the same bytes ASCII would. That’s not the case for UTF-16.

Do you know the reason?

Not without full response headers and the original response body in a hex editor. The general solution, as noted above, is to use always UTF-8 and never to use UTF-16 over HTTP.

If your content is in a language for which UTF-16 is more compact than UTF-8, two things:

  1. All the HTML, JS and CSS on the page is more compact in UTF-8.
  2. gzip makes the difference go away.
§普罗旺斯的薰衣草 2024-12-23 20:11:37

检查服务器是否发送具有正确编码的 Content-Type 标头。

Check that the server sends a Content-Type header with the correct encoding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文