0x00 前言

...有一说一,赵总的BUUCTF上的这道题目并没有复现到精髓。其实感觉出题人的题目本身没有那么简单的,只不过非预期实在是太简单惹。

涉及知识点:

1.php中protected变量反序列化的小Trick

2.获取任意文件读取权限后的文件绝对路径的查找

<!--more-->

0x01 源码

直接进入题目就可以看到源码了。

<?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

相关文章:

  • 2021-06-18
  • 2021-04-28
  • 2022-02-13
  • 2022-12-23
  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2020-07-11
  • 2022-12-23
  • 2022-12-23
  • 2021-11-25
相关资源
相似解决方案