默认情况下使用 Markdown 的文本编辑器比其他文本编辑器更安全吗

发布于 2024-11-10 18:08:48 字数 281 浏览 3 评论 0原文

我熟悉 CKEditor,它将粗体文本转换为其 HTML 标签 。其他编辑器(如本网站上的编辑器)使用 Markdown 格式,我看到粗体文本用星号包裹,而不是像 **text** 这样的 HTML。

Sp 这是否意味着默认情况下使用 Markdown 编辑器可以保护您免受用户输入中的任何 XSS 影响?我认为是的(这是我想使用 Markdown 编辑器而不是 ckeditor 的主要原因),但想仔细检查。

I'm familiar with CKEditor which converts bold text to its HTML tags <strong>. Other editors (like the editor on this site) use Markdown formatting and I see bold text wrapped in stars instead of HTML like this **text**.

Sp does this mean that using a markdown editor protects you by default from any XSS in that user input? I think yes (which is the the main reason I want to use a markdown editor and not ckeditor), but want to double check.

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

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

发布评论

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

评论(2

南街女流氓 2024-11-17 18:08:48

据此: http://michelf.com/weblog/2010/markdown-and- xss/

默认情况下不会转义 XSS

According to this: http://michelf.com/weblog/2010/markdown-and-xss/

It doesn't escape XSS on default

十二 2024-11-17 18:08:48

没有 XSS 安全的客户端编辑器。即使编辑器不允许您插入任意 HTML,某人也很容易绕过编辑器并提交任意 HTML。

唯一安全的解决方案是清理服务器上的 HTML。

There are no XSS safe client side editors. Even if the editor does not allow you to insert arbitrary HTML, it is trivially easy for someone to bypass the editor and submit arbitrary HTML.

The only safe solution is to sanitize the HTML on the server.

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