源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

不要轻信 PHP_SELF的安全问题

  • 时间:2021-02-05 14:55 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:不要轻信 PHP_SELF的安全问题
[url=http://www.gracecode.com/Archive/Display/2491]XSS 的注入漏洞[/url]。究其原因,发现是在
echo $_SERVER['PHP_SELF'];
这条语句上直接输出了未过滤的值。追根数源,我们看下 PHP 手册的描述
'PHP_SELF'

The filename of the currently executing script, relative to the document root.
For instance, $_SERVER['PHP_SELF'] in a script at the address
http://example.com/test.php/foo.bar would be /test.php/foo.bar. The __FILE__
constant contains the full path and filename of the current (i.e. included) file.
If PHP is running as a command-line processor this variable contains the script
name since PHP 4.3.0. Previously it was not available. 
原因很明确了,原来是 $_SERVER['PHP_SELF'] 虽然“看起来”是服务器提供的环境变量,但这的确和 $_POST 与 $_GET 一样,是可以被用户更改的。 其它类似的变量有很多,比如 $_COOKIE 等(如果用户想“把玩”他们的 cookie,那我们也是没有办法)。解决方案很简单,使用 [url=http://cn2.php.net/strip_tags]strip_tags[/url]、[url=http://cn2.php.net/htmlentities]htmlentities[/url] 等此类函数过滤或者转义。
echo htmlentities($_SERVER['PHP_SELF']); 
-- Split -- 上述的例子让我们需要时刻保持谨慎 coding 的心态。Chris Shiflett 在他的 Blog [url=http://shiflett.org/blog/2005/feb/my-top-two-php-security-practices]总结的相当直白[/url],防止 XSS 的两个基本的安全思想就是
Filter input
Escape output
我将上面翻译成 “过滤输入,转义输出”。详细的内容,可以参考他 Blog 的[url=http://shiflett.org/blog/2005/feb/more-on-filtering-input-and-escaping-output]这篇文章[/url],此处略。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部