HTML 代码标签内的内容是否容易受到 XSS 攻击?

发布于 2024-11-16 14:36:39 字数 216 浏览 0 评论 0原文

我正在使用 Codeingiter,我看到 xss_clean() 正在用单个空格字符替换制表符。这会破坏稍后显示在

标记内的内容。

HTML 标签内的 XSS 攻击字符串会有问题吗?

如果是,有没有办法在这种情况下保留选项卡?

I am using Codeingiter, I see that the xss_clean() is replacing the tab characters with a single space character. This is breaking the contents that are later displayed inside <pre><code></code></pre> tags.

Can XSS attack string inside <code> HTML tag be of any problem?

If yes, is there a way to retain the tabs in such a situation?

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

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

发布评论

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

评论(1

霓裳挽歌倾城醉 2024-11-23 14:36:39

是的, 元素中的 XSS 攻击仍然是一个问题。为了解决这个问题,您应该转义 块中的代码。例如,

<pre><code><p%gt;this is an example paragraph in code</p></code></pre>

它将显示为:

<p>this is an example paragraph in code</p>

Yes, XSS attacks within the <code> element are still a problem. To get around this, you should escape your code within the <code> block. e.g.

<pre><code><p%gt;this is an example paragraph in code</p></code></pre>

Which will display as:

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