[MRCTF2020]Ezpop

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

一个反序列化题目,从上往下看,__invoke()是要以函数的方式调用对象触发,而__get()里面的$function()就是这样的,$function=$this->p,而__get()是需要从不可访问的属性读取数据,$this->str->source,str下面是没有source这个的,所以不可访问,触发__get(),而$this->str->source有需要触发__toString(),__toString()当一个对象被当作一个字符串被调用,而当做字符串在if(preg_match("/gopher|http|file|ftp|https|dict|\.\./i", $this->source))这里,这里又需要触发__wakeup(),__wakeup()使用unserialize时触发,到这里整个链就完成了,

这里的preg_match函数不用去管,因为在$this->source这里就会不停跳转,不会进去函数的判断里面,只是利用它到达触发__tostring()的目的,

由此,

 

 

 这个题是对于入门很好的一个题,强烈推荐

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值