返回列表 发帖

phpwind 7.5 多种远程包含漏洞

phpwind 7.5 Multiple Include Vulnerabilities  

author: 80vul
team:http://www.80vul.com

一.api/class_base.php本地包含漏洞

1.描叙

  api/class_base.php文件里callback函数里$mode变量没有过滤导致任意包含本地文件,从而可以执行任意PHP命令.

2. 具体分析

api/class_base.php文件里:

  1.         function callback($mode, $method, $params) {
  2.                 if (!isset($this->classdb[$mode])) {
  3.                         if (!file_exists(R_P.'api/class_' . $mode . '.php')) {
  4.                                 return new ErrorMsg(API_MODE_NOT_EXISTS, "Class($mode) Not Exists");
  5.                         }
  6.                         require_once(R_P.'api/class_' . $mode . '.php'); //这里
  7.                         $this->classdb[$mode] = new $mode($this);
  8.                 }
  9.                 if (!method_exists($this->classdb[$mode], $method)) {
  10.                         return new ErrorMsg(API_METHOD_NOT_EXISTS, "Method($method of $mode) Not Exists");
  11.                 }
  12.                 !is_array($params) && $params = array();
  13.                 return @call_user_func_array(array(&$this->classdb[$mode], $method), $params);
  14.         }
复制代码

我们继续跟一下具体变量传递的过程. 上面的函数在run()里有调用:

   
  1.     function run($request) {
  2.                 $request = $this->strips($request);
  3.                 if (isset($request['type']) && $request['type'] == 'uc') {
  4.                         $this->type                = 'uc';
  5.                         $this->apikey        = $GLOBALS['uc_key'];//注意这个变量也是该漏洞的关键
  6.                 } else {
  7.                         $this->type                = 'app';
  8.                         $this->apikey        = $GLOBALS['db_siteownerid'];
  9.             $this->siteappkey = $GLOBALS['db_siteappkey'];
  10.                 }
  11.                 /***
  12.                 if ($this->type == 'app' && !$GLOBALS['o_appifopen']) {
  13.                         return new ErrorMsg(API_CLOSED, 'App Closed');
  14.                 }
  15.                 ***/
  16.                 ksort($request);
  17.                 reset($request);
  18.                 $arg = '';
  19.                 foreach ($request as $key => $value) {
  20.                         if ($value && $key != 'sig') {
  21.                                 $arg .= "$key=$value&";
  22.                         }
  23.                 }
  24.                 if (md5($arg . $this->apikey) != $request['sig']) { //注意这个判断,需要绕过它.上面的代码可以看的出来$this->apikey        = $GLOBALS['uc_key'],和$request['sig']我们
  25.                                                                     //都可以控制,那么很容易绕过它
  26.                         return new ErrorMsg(API_SIGN_ERROR, 'Error Sign');
  27.                 }
  28.                 $mode        = $request['mode']; //取$mode 没有过滤直接进入下面的callback()
  29.                 $method        = $request['method'];
  30.                 $params = isset($request['params']) ? unserialize($request['params']) : array();
  31.         if (isset($params['appthreads'])) {
  32.             if (PHP_VERSION < 5.2) {
  33.                 require_once(R_P.'api/class_json.php');
  34.                 $json = new Services_JSON(true);
  35.                 $params['appthreads'] = $json->decode(@gzuncompress($params['appthreads']));
  36.             } else {
  37.                 $params['appthreads'] = json_decode(@gzuncompress($params['appthreads']),true);
  38.             }
  39.         }
  40.                 if ($params && isset($request['charset'])) {
  41.                         $params = pwConvert($params, $this->charset, $request['charset']);
  42.                 }
  43.                 return $this->callback($mode, $method, $params); //调用callback ()
  44.         }
复制代码
我们继续看看run()函数的调用:

在pw_api.php文件里:

  1. $api = new api_client();
  2. $response = $api->run($_POST + $_GET);//直接run了$_POST , $_GET提交的变量.
复制代码


上面的分析是逆行分析了整个漏洞变量提交的过程,其实我们这个漏洞还包含一次编码与解码的问:require_once(R_P.'api/class_' . $mode . '.php');这个需要绕过魔术引号才可以
包含容易文件.我们注意看run()的第一句        

$request = $this->strips($request);

strips()的代码:

  1.        function strips($param) {
  2.                 if (is_array($param)) {
  3.                         foreach ($param as $key => $value) {
  4.                                 $param[$key] = $this->strips($value);
  5.                         }
  6.                 } else {
  7.                         $param = stripslashes($param); //变量直接使用了stripslashes,那么我们可以直接绕过魔术引号了 :)
  8.                 }
  9.                 return $param;
  10.         }
复制代码

3.POC/EXP

  缺

4.FIX

由于漏洞信息的外泄,官方针对这个漏洞已经做出了修补:

http://www.phpwind.net/read-htm-tid-914851.html

具体代码:

  1. require_once Pcv(R_P.'api/class_' . $mode . '.php');

  2. function Pcv($filename,$ifcheck=1){
  3.         $tmpname = strtolower($filename);
  4.         $tmparray = array(' http://',"\0"); //过滤了http:// \0 意思是不让远程 不让截断
  5.         $ifcheck && $tmparray[] = '..';    //过滤了.. 意思是不让转跳目录
  6.         if (str_replace($tmparray,'',$tmpname)!=$tmpname) {
  7.                 exit('Forbidden');
  8.         }
  9.         return $filename;
  10. }
复制代码

从Pcv()可以看出来phpwind的补丁风格是很猥琐的,单从这个pcv来看 还有很多的逻辑问题,比如http://这个过滤很搞笑,人家就不可以用ftp://? ...


二.apps/share/index.php远程包含漏洞

1.描叙

apps/share/index.php 里$route和$basePath变量没有初始化,导致远程包含或者本地包含php文件,导致执行任意php代码

2.具体分析

  1. <?php
  2. if ($route == "share") {
  3.         require_once $basePath . '/action/m_share.php';
  4. } elseif ($route == "sharelink") {
  5.         require_once $basePath . '/action/m_sharelink.php';
  6. }
  7. ?>
复制代码

这个漏洞好象不太需要分析!!!! 我建议写这个代码的人应该扣除年终奖...

3.POC/EXP
  
  缺

4.FIX

已经在这个补丁的同时'修补'了
http://www.phpwind.net/read-htm-tid-914851.html

  1. <?php
  2. !function_exists('readover') && exit('Forbidden');
  3. if ($route == "share") {
  4.         require_once $basePath . '/action/m_share.php';
  5. } elseif ($route == "sharelink") {
  6.         require_once $basePath . '/action/m_sharelink.php';
  7. }
  8. ?>
复制代码

三.apps/groups/index.php远程包含漏洞

1.描叙

apps/groups/index.php 里$route和$basePath变量没有初始化,导致远程包含或者本地包含php文件,导致执行任意php代码

2.具体分析

  1. <?php
  2. if ($route == "groups") {
  3. require_once $basePath . '/action/m_groups.php';
  4. } elseif ($route == "group") {
  5. require_once $basePath . '/action/m_group.php';
  6. } elseif ($route == "galbum") {
  7. require_once $basePath . '/action/m_galbum.php';
  8. }
复制代码


这个漏洞好象不太需要分析!!!! 我建议写这个代码的人应该扣除年终奖...

3.POC/EXP
  
  缺

4.FIX

已经在这个补丁的同时'修补'了
http://www.phpwind.net/read-htm-tid-914851.html

  1. <?php
  2. !function_exists('readover') && exit('Forbidden');
  3. if ($route == "groups") {
  4. require_once $basePath . '/action/m_groups.php';
  5. } elseif ($route == "group") {
  6. require_once $basePath . '/action/m_group.php';
  7. } elseif ($route == "galbum") {
  8. require_once $basePath . '/action/m_galbum.php';
  9. }
  10. ?>
复制代码
希望做站长本人的学生请点击
http://www.3ast.com/viewthread.php?tid=13841
QQ790653916只负责SEO以及收费教学等方面联系,他人勿扰

于智者同行,你会不同凡响;与高人为伍,你会登上巅峰

注册帐号,传jpg后缀的phpshell然后包含之
希望做站长本人的学生请点击
http://www.3ast.com/viewthread.php?tid=13841
QQ790653916只负责SEO以及收费教学等方面联系,他人勿扰

于智者同行,你会不同凡响;与高人为伍,你会登上巅峰

TOP

apps/groups/index.php?route=groups&basePath=.....
希望做站长本人的学生请点击
http://www.3ast.com/viewthread.php?tid=13841
QQ790653916只负责SEO以及收费教学等方面联系,他人勿扰

于智者同行,你会不同凡响;与高人为伍,你会登上巅峰

TOP

正需要来着。。

TOP

怎么用??

TOP

很不错喔!

TOP

返回列表