PHP_SELF 和 XSS

发布于 2024-11-09 08:53:46 字数 614 浏览 0 评论 0原文

可能的重复:
PHP_SELF 和 XSS

为什么需要过滤 $_SERVER['PHP_SELF'],例如

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
  <!-- form contents -->
</form>

to:  

<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"], ENT_QUOTES, "utf-8"); ?>">
  <!-- form contents -->
</form>  

:为了使其能够防 XSS 攻击?

以及:

攻击者如何利用第一种形式的“漏洞”接触除他自己之外的最终用户?

Possible Duplicate:
PHP_SELF and XSS

Why it's necessary to filter $_SERVER['PHP_SELF'], from e.g.:

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
  <!-- form contents -->
</form>

to:  

<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"], ENT_QUOTES, "utf-8"); ?>">
  <!-- form contents -->
</form>  

in order to make it XSS-attack proof?

and:

How can attacker reach end users other than himself using the "vulnerability" of the first form?

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

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

发布评论

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

评论(2

染火枫林 2024-11-16 08:53:46

攻击者如何利用第一种形式的“漏洞”接触除他自己之外的最终用户?

攻击者可以从他控制的网站或他发送的电子邮件链接到您的网站。

How can attacker reach end users other than himself using the "vulnerability" of the first form?

The attacker can link to your site from a site he controls or an email he sends.

娇女薄笑 2024-11-16 08:53:46

如果您使用 AcceptPathInfo或类似的东西,例如 /index.php/foo/bar 之类的 URI 被定向到 /index.php,请求 /index.php/%22% E3E… 可以在 form 标签之外获取您的以下数据。

至于第二个问题:点击此处

If you’re using AcceptPathInfo or something similar such that a URI like /index.php/foo/bar is directed to /index.php, requesting /index.php/%22%E3E… can get your following data outside the form tag.

And as for the second question: click here.

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