Microsoft Anti XSS 库编码 & 符号?

发布于 2024-12-09 10:16:45 字数 434 浏览 0 评论 0原文

我目前正在使用 Microsoft AntiXSS 库 并使用 GetSafeHtmlFragment 方法,如下所示:

public static string SanitizeHtml(this string s)
{
    return Sanitizer.GetSafeHtmlFragment(s);
}

但是,如果我传入这样的字符串:

黑色&白色

...它正在对&符号进行编码,因此它变成:

黑色&白色

这是该库的正常行为吗?有没有办法阻止它对这个字符进行编码?

I am currently using the Microsoft AntiXSS library and using the GetSafeHtmlFragment method as follows:

public static string SanitizeHtml(this string s)
{
    return Sanitizer.GetSafeHtmlFragment(s);
}

However, if I pass in a string like this:

black & white

... it is encoding the ampersand so it becomes:

black & white

Is this normal behaviour for this library? Is there a way of preventing it from encoding this character?

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

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

发布评论

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

评论(2

半世晨晓 2024-12-16 10:16:45

我认为这不是最好的解决方案。如果您使用 HTML.Raw(),那么您很容易受到 XSS 攻击,除非您可以绝对确定该字符串对于 HTML.Raw() 的所有使用始终都是安全的。

I don't think this is the best solution. If you use HTML.Raw() then you are leaving yourself vulnerable to XSS attacks unless you can be absolutely sure that the string is safe all the time and for all uses of HTML.Raw().

楠木可依 2024-12-16 10:16:45

这是该库的正常行为吗?

是的,它修复了您的 HTML,因为您正在使用 GetSafeHtmlFragment。否则,您将得到无效的 HTML 片段。在 HTML 中,& 字符具有特殊含义。我不认为这种行为可以改变。

Is this normal behaviour for this library?

Yes, it fixes your HTML since you are using GetSafeHtmlFragment. Otherwise you would have ended up with invalid HTML fragment. In HTML the & character has special meaning. I don't think this behavior could be modified.

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