XSS 验证、预防还是治疗?

发布于 2024-12-25 21:53:01 字数 168 浏览 1 评论 0原文

我正在尝试制作一个防黑客网站并学习 XSS。所以流程是

A:获取用户输入-> B:存储它-> C:再次向客户显示,

我正在使用 Microsoft AntiXSS 库来避免 XSS 攻击,但是,令人困惑的是,我是否应该在步骤“B”或步骤“C”执行所需的步骤来避免 XSS 攻击。

I am having hands on trying to make a hack-proof website and learning about XSS. So the process is

A: Get User Input -> B: Store It -> C: Show It Again To client

I am using Microsoft AntiXSS library to avoid XSS attacks, but, the confusion is, should I perform required steps to avoid XSS attacks at step 'B' or at Step 'C'.

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

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

发布评论

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

评论(1

情仇皆在手 2025-01-01 21:53:01

您应该在呈现内容时执行清理工作,因为这是唯一重要的点。

在更复杂的场景中,您的数据流可能如下所示:

                          /---> C (presentation)
A (get input) -> B (store) 
                          \---> D (process)

如果您已经对 B 点的数据进行了清理,那么 D 点的处理将无法对原始数据进行操作。

You should perform the sanitisation at the point where you are presenting the content, because this is the only point where it matters.

In a more complicated scenario, your data-flow may look like this:

                          /---> C (presentation)
A (get input) -> B (store) 
                          \---> D (process)

If you've already sanitised the data at point B, then the processing at point D won't be able to operate on the original data.

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