當前位置:才華齋>計算機>php語言>

php中allow-url-include的應用分析

php語言 閱讀(3.13W)

php常因為它可能允許URLS被匯入和執行語句被人們指責。這是導致稱為Remote URL Include vulnerabilities的php應用程式漏洞的最重要的原因之一。就跟隨本站小編一起去了解下吧,想了解更多相關資訊請持續關注我們應屆畢業生考試網!

php中allow-url-include的應用分析

php常因為它可能允許URLS被匯入和執行語句被人們指責。

這是導致稱為Remote URL Include vulnerabilities的php應用程式漏洞的最重要的原因之一。

也因為如此,有些安全人員建議在配置中禁用指向allow_url_fopen。

不過,這樣會破壞很多的應用並且並不能保證100%的解決remote URL includes以及他帶來的不安全性。

通常,使用者要求在他們使用其他的檔案系統函式的`時候,php允許禁止URL包含和請求宣告支援。

鑑於此,計劃在PHP6中提供allow_url_include。在這些討論之後,這些特性在php5.2.0 中被backported。現在大多數的安全研究人員已經改變了他們的建議,只建議人們禁止allow_url_include。

allow_url_fopen和allow_url_include並不是導致問題的原因。一方面來說在應用中包含本地檔案仍然是一件足夠危險的事情,因為攻擊者經常通過sessiondata, fileupload, logfiles,...等方法獲取php程式碼………

另一方面allow_url_fopen和allow_url_include只是保護了against URL handles標記為URL.這影響了http(s) and ftp(s)但是並沒有影響php或date(new in php5.2.0) urls.這些url形式,都可以非常簡單的進行php程式碼注入。

  例1: Use php://input to read the POST data

複製程式碼 程式碼如下:

<?php

// Insecure Include

// The following Include statement will

// include and execute everything POSTed

// to the server

include "php://input";

?>

  例2: Use data: to Include arbitrary code

複製程式碼 程式碼如下:

<?php

// Insecure Include

// The following Include statement will

// include and execute the base64 encoded

// payload. Here this is just phpinfo()

include "data:;base64,PD9waHAgcGhwaW5mbygpOz8+";

?>

把這些放到運算裡將會發現既不是url_allow_fopen也不是url_allor_include 被保障。

只是因為過濾器很少對向量進行過濾。如果要完全解決這個URL include vulnerabilities的方法則需要應用Suhosin擴充套件。