PHP常常因為它可能允許URLS被導入和執行語句被人們指責
因為這個原因
通常
因為這個原因
不幸的是
另一方面allow_url_fopen和allow_url_include只是保護了against URL handles標記為URL
Example
<?php
// Insecure Include
// The following Include statement will
// include and execute everything POSTed
// to the server
include "php://input";
?>
Example
<?php
// Insecure Include
// The following Include statement will
// include and execute the base
// payload
include "data:;base
?>
把這些放到我們的運算裡面將會非常明顯的發現既不是url_allow_fopen也不是url_allor_include 被保障
From:http://tw.wingwit.com/Article/program/PHP/201311/20835.html