|
復(fù)制代碼 代碼如下:
<html>
<body>
<?php
if (isset($_REQUEST['submitted']) && $_REQUEST['submitted'] == '1') {
echo "Form submitted!";
}
?>
<form action="<?php echo $_SERVER['php_SELF']; ?>">
<input type="hidden" name="submitted" value="1" />
<input type="submit" value="Submit!" />
</form>
</body>
</html>
看似準(zhǔn)確無(wú)誤的代碼,但是暗藏著危險(xiǎn)。讓我們將其保存為 foo.php ,然后放到 php 環(huán)境中使用
foo.php/%22%3E%3Cscript%3Ealert('xss')%3C/script%3E%3Cfoo
訪問(wèn),會(huì)發(fā)現(xiàn)彈出個(gè) Javascript 的 alert -- 這很明顯又是個(gè) XSS 的注入漏洞。究其原因,發(fā)現(xiàn)是在
echo $_SERVER['php_SELF'];
這條語(yǔ)句上直接輸出了未過(guò)濾的值。追根數(shù)源,我們看下 php 手冊(cè)的描述
'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.
原因很明確了,原來(lái)是 $_SERVER['php_SELF'] 雖然“看起來(lái)”是服務(wù)器提供的環(huán)境變量,但這的確和 $_POST 與 $_GET 一樣,是可以被用戶更改的。
其它類似的變量有很多,比如 $_COOKIE 等(如果用戶想“把玩”他們的 cookie,那我們也是沒(méi)有辦法)。解決方案很簡(jiǎn)單,使用 strip_tags、htmlentities 等此類函數(shù)過(guò)濾或者轉(zhuǎn)義。
echo htmlentities($_SERVER['php_SELF']);
-- Split --
上述的例子讓我們需要時(shí)刻保持謹(jǐn)慎 coding 的心態(tài)。Chris Shiflett 在他的 Blog 總結(jié)的相當(dāng)直白,防止 XSS 的兩個(gè)基本的安全思想就是
Filter input
Escape output
我將上面翻譯成 “過(guò)濾輸入,轉(zhuǎn)義輸出”。詳細(xì)的內(nèi)容,可以參考他 Blog 的這篇文章,此處略。
php技術(shù):不要輕信 PHP_SELF的安全問(wèn)題,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。