php allow_url_include的應用和解釋

來源:互聯網
上載者:User

因為這個原因,許多安全研究人員建議在php.ini配置中禁用指向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代碼注入。

Example 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";
?>

Example 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 被保障。這些只是因為過濾器很少對向量進行過濾。能夠100%解決這個URL include vulnerabilities的方法是我們的Suhosin擴充.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.