php allow_url_include的应用和解释

2015-01-24信息快讯网

PHP常常因为它可能允许URLS被导入和执行语句被人们指责。事实上,这件事情并不是很让人感到惊奇,因为这是导致称为Remote URL Include vulnerabilities的php应用程序漏洞的最重要的原因之一。

因为这个原因,许多安全研究人员建议在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扩展.

PHP url 加密解密函数代码
phpmyadmin安装时提示:Warning: require_once(./libraries/common.inc.php)错误解决办法
php中使用Curl、socket、file_get_contents三种方法POST提交数据
PHP中获取内网用户MAC地址(WINDOWS/linux)的实现代码
php的urlencode()URL编码函数浅析
ThinkPHP 防止表单重复提交的方法
ThinkPHP与PHPExcel冲突解决方法
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享
PHP header函数分析详解
PHP源码之explode使用说明
PHP获取url的函数代码
在WAMP环境下搭建ZendDebugger php调试工具的方法
PHP的explode和implode的使用说明
php自定义函数call_user_func和call_user_func_array详解
PHP include_path设置技巧分享
php自动获取字符串编码函数mb_detect_encoding
PHP最常用的ini函数分析 针对PHP.ini配置文件
php strcmp使用说明
php快速url重写 更新版[需php 5.30以上]
一个PHP的String类代码
来自phpguru得Php Cache类源码
php in_array 函数使用说明与in_array需要注意的地方说明
Fatal error: Call to undefined function curl_init()解决方法
dedecms系统的广告设置代码 基础版本
DedeCMS 核心类TypeLink.class.php摘要笔记
Ext.data.PagingMemoryProxy分页一次性读取数据的实现代码
DedeCMS dede_channeltype表字段注释
php echo()和print()、require()和include()函数区别说明
PHP中include()与require()的区别说明
用Zend Encode编写开发PHP程序
PHP采集相关教程之一 CURL函数库
检查url链接是否已经有参数的php代码 添加 ? 或 &
PHP has encountered an Access Violation 错误的解决方法
©2014-2024 dbsqp.com