当前位置:首页 > PHP教程 > php高级应用 > 列表

深入分析sugarcrm php代码注入

发布:smiling 来源: PHP粉丝网  添加日期:2018-10-16 10:56:32 浏览: 评论:0 

这篇文章准备通过通过请求语句来看传入的数据在代码中流向,这样或许更方便来理解这个漏洞。

http://[host]/[sugar]/index.php?module=Connectors&action=RunTest&source_id=ext_rest_insideview&ext_rest_insideview_[%27.phpinfo().%27]=1

最后的效果就是程序会执行phpinfo()函数。

流程分析

入口函数action_RunTest()

当访问POC时,程序会进入到modules/Connectors/controller.php中的action_RunTest()函数中。

其中的source_id就是PoC中传入的ext_rest_insideview,至于为什么会传入这个,之后的分析会讲到。

SourceFactory::getSource()

跟踪SourceFactory::getSource()函数,进入include/connectors/sources/SourceFactory.php

发现在其中调用了ConnectorFactory::load()方法,其中的$class就是传入的ext_rest_insideview

load()

跟踪ConnectorFactory::load()函数,进入include/connectors/ConnectorFactory.php。发现load()函数又调用loadClass()函数。

在loadClass()函数中,会尝试导入一个文件,导入的格式就是.../connectors/{$type}/{$dir}/$file。其中$type是传入的sources,$dir是将$class(在本PoC中为ext_rest_insideview)字符串中的_替换为/的一个路径,所以最后$dir的值为ext/rest/insideview,这个在图片上也有显示,$file就是路径的最后一个值insideview.php。最后程序就会尝试去寻找对应的文件,如果没有找到就会报错。

所以Poc中的source_id=ext_rest_insideview并不能随便写为任意值。假若写为source_id=a_b_c,那么在执行loadClass()的时候无法找到文件导致程序无法往下执行,那么payload就无用了。

setsetProperties()

在对loadClass()分析完毕之后,最后回到入口函数action_RunTest()。

程序往下执行进入到setProperties()方法中。

其中的foreach()就会对传入值赋值到$properties中,最后得到的$properties的值如左边的图所示,即为

[''][''.phpinfo().''] = '1';。

跟踪setProperties(),进入include/connectors/sources/default/source.php,setProperties()代码如下:

  1. public function setProperties($properties=array()) 
  2.     if(!emptyempty($this->_config) && isset($this->_config['properties'])) { 
  3.        $this->_config['properties'] = $properties
  4.        $this->config_decrypted = true; // Don't decrypt external configs 
  5.     } 

那么最后,得到在config中得到就是:

  1. $config['properties'][''][''.phpinfo().''] = '1'
  2. saveConfig() 

对setProperties()分析完毕之后,回到入口函数action_RunTest()。

程序继续往下执行,进入到saveConfig()中。

其中关键的地方就在于将变量$this_config中的键值对,调用override_value_to_string_recursive2()函数变为一个字符串。

override_value_to_string_recursive2()

跟踪override_value_to_string_recursive2(),进入到include/utils/array_utils.php中。

  1. function override_value_to_string_recursive2($array_name$value_name$value$save_empty = true) { 
  2.  if (is_array($value)) { 
  3.   $str = ''
  4.   $newArrayName = $array_name . "['$value_name']"
  5.   foreach($value as $key=>$val) { 
  6.    $str.= override_value_to_string_recursive2($newArrayName$key$val$save_empty); 
  7.   } 
  8.   return $str
  9.  } else { 
  10.   if(!$save_empty && emptyempty($value)){ 
  11.    return
  12.   }else
  13.    return "\$$array_name" . "['$value_name'] = " . var_export($value, true) . ";\n"
  14.   } 
  15.  } 

可以看到这就是一个普通的将一个数组类型的变量转化为一个字符串,最后$this_conifg变为:

  1. /***CONNECTOR SOURCE***/ 
  2. $config['name'] = 'InsideView©'
  3. $config['order'] = 65; 
  4. $config['properties'][''][''.phpinfo().''] = '1'

这个赋值给变量$config_str

PoC执行

回到saveConfig()函数中,程序最后执行

file_put_contents("custom/modules/Connectors/connectors/sources/{$dir}/config.php", $config_str);

其中的$dir为ext/rest/insideview,那么最后程序就会在custom/modules/Connectors/connectors/sources/ext/rest/insideview/config.php写入$config_str的值,最后就会触发其中的phpinfo()函数,导致代码执行。

最后在config.php中写入的代码是:

  1. $config = array ( 
  2.   'name' => 'InsideView©'
  3.   'order' => 65, 
  4.   'properties' => array ( 
  5.       ), 
  6. ); 

自此漏洞就分析完毕了。

修复

修复方法很简单,在override_value_to_string_recursive2()函数中进行修复:

  1. function override_value_to_string_recursive2($array_name$value_name$value$save_empty = true) { 
  2.     $quoted_vname = var_export($value_name, true); 
  3.  if (is_array($value)) { 
  4.   $str = ''
  5.         $newArrayName = $array_name . "[$quoted_vname]"
  6.   foreach($value as $key=>$val) { 
  7.    $str.= override_value_to_string_recursive2($newArrayName$key$val$save_empty); 
  8.   } 
  9.   return $str
  10.  } else { 
  11.   if(!$save_empty && emptyempty($value)){ 
  12.    return
  13.   }else
  14.             return "\$$array_name" . "[$quoted_vname] = " . var_export($value, true) . ";\n"
  15.   } 
  16.  } 

修复的代码就是使用了var_export()函数对$value_name变量进行了字符串的表示。这样写之后,最终得到$config_str的值是:

  1. /***CONNECTOR SOURCE***/ 
  2. $config['name'] = 'InsideView©'
  3. $config['order'] = 65; 
  4. $config['properties']['']['\'.phpinfo().\''] = '1'

上面的代码就可以正常地写入到文件中,不会触发代码执行了。

总结:

通过分步调试的方法,能够对这个漏洞理解得更加的透彻,通过这个漏洞也增加了自己调试漏洞的能力。

Tags: sugarcrm php代码注入

分享到: