本次是对zzcms2021前台一个可能的写配置文件的点进行分析(已交cnvd,不知道收不收呀),为什么说是可能,各位师傅往下看就好啦
从官网下载最新源码后,本地搭建环境进行分析
主要利用在/3/ucenter_api/api/uc.php中
在/3/ucenter_api/api/uc.php中,通过get传参code,再将_authcode解密后的code利用parse_str解析并赋值给$get
跟进到_authcode函数:
function _authcode($string, $operation = 'DECODE', $key = '', $expiry = 0) {
$ckey_length = 4;
$key = md5($key ? $key : UC_KEY);
$keya = md5(substr($key, 0, 16));
$keyb = md5(substr($key, 16, 16));
$keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(microtime()), -$ckey_length)) : '';
$cryptkey = $keya.md5($keya.$keyc);
$key_length = strlen($cryptkey);
$string = $operation == 'DECODE' ? base64_decode(substr($string, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$keyb), 0, 16).$string;
$string_length = strlen($string);
$result = '';
$box = range(0, 255);
$rndkey = array();
for($i = 0; $i <= 255; $i++) {
$rndkey[$i] = ord($cryptkey[$i % $key_length]);
}
for($j = $i = 0; $i < 256; $i++) {
$j = ($j + $box[$i] + $rndkey[$i]) % 256;
$tmp = $box[$i];
$box[$i] = $box[$j];
$box[$j] = $tmp;
}
for($a = $j = $i = 0; $i < $string_length; $i++) {
$a = ($a + 1) % 256;
$j = ($j + $box[$a]) % 256;
$tmp = $box[$a];
$box[$a] = $box[$j];
$box[$j] = $tmp;
$result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
}
if($operation == 'DECODE') {
if((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16)) {
return substr($result, 26);
} else {
return '';
}
} else {
return $keyc.str_replace('=', '', base64_encode($result));
}
}
对传参进行加密,可以看到若$key为空的话,则为UC_KEY
搜索UC_KEY
这样就可以进行加密传参
但是这里需要通过一个判断,在传参中加入time()就可以通过
接着通过 $post = xml_unserialize(file_get_contents('php://input'));获取$post,因为这里没有过滤,所以就发生了写入
然后进入if判断
如果传入的action操作在数组里,则实例化uc_note()类并调用action操作。因为$post没有被过滤,所以选择一个接受$post的方法
在updateapps中
传入$UC_API = $post['UC_API'],通过正则匹配
$configfile = preg_replace("/define\('UC_API',\s*'.*?'\);/i", "define('UC_API', '$UC_API');", $configfile);
将config.inc.php中define('UC_API', 'http://demo.zzcms.net') ;进行替换
可以看出,这样便可以构造$UC_API=');phpinfo();//进行闭合
但是这里有个尴尬的地方就是,源码里的正则写错了,/define('UC_API',\s'.?');/i中;的前面少了个空格,导致匹配不到config.inc.php里面的define('UC_API', 'http://demo.zzcms.net') ;
不过按照源码想实现的功能应该是可以写入的
在正则的地方添加空格后走一遍的流程
首先构造code传参
接着将poc添加并post
可以看到已经将phpinfo写入