使用 xss_clean 剥离 Codeigniter php 标签

发布于 2024-12-09 18:51:29 字数 259 浏览 0 评论 0原文

为什么如果我传递 $_POST['string'] = "" 然后我用 echo $this- 将其传递给 xss_clean() >input->post('string',true); 输出为 <?php echo 'hey' ?> 和不是作为 ??

Why if i pass a $_POST['string'] = "<?php echo 'hey' ?>" then i pass it to the xss_clean() with echo $this->input->post('string',true); it is outputted as &lt;?php echo 'hey' ?&gt; and not as <?php echo 'hey' ?> ??

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

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

发布评论

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

评论(1

等往事风中吹 2024-12-16 18:51:29

如果您查看源代码,您会发现 xss_clean 方法做了很多繁重的工作。它不仅仅是一个 htmlspecialchars() 调用。如果你想在页面中显示 php 代码,我会先对其进行转换,然后对其进行清理。

If you take a look at the source code, you can see that the xss_clean method does a lot of heavy lifting. It's more than just a htmlspecialchars() call. If you're wanting to display php code in a page, I would convert it first, then sanitize it.

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