[BJDCTF2020]EzPHP
[BJDCTF2020]EzPHP
考点
base32
$_SERVER['QUERY_STRING']不进行URL解码,用URL编码绕过$_GET['debu']要是aqua_is_cute但又不能是aqua_is_cute,用%0a换行符绕过$_REQUEST中参数值不能出现字母,$_REQUEST是优先读取POST传参再读取GET传参,可以先POST再GETfile_get_contents($file)一般配合php://input,还可以配合data://text/plain,debu_debu_aqua$code('', $arg);对应create_function代码执行可以看一下
get_defined_vars()
wp
F12给了一段密文GFXEIM3YFZYGQ4A=
目测是base家族的,64,32,16等等试一下,发现是base32,解码是1nD3x.php
给了源码
<?php
highlight_file(__FILE__);
error_reporting(0);
$file = "1nD3x.php";
$shana = $_GET['shana'];
$passwd = $_GET['passwd'];
$arg = '';
$code = '';
echo "<br /><font color=red><B>This is a very simple challenge and if you solve it I will give you a flag. Good Luck!</B><br></font>";
if($_SERVER) {
if (
preg_match('/shana|debu|aqua|cute|arg|code|flag|system|exec|passwd|ass|eval|sort|shell|ob|start|mail|\$|sou|show|cont|high|reverse|flip|rand|scan|chr|local|sess|id|source|arra|head|light|read|inc|info|bin|hex|oct|echo|print|pi|\.|\"|\'|log/i', $_SERVER['QUERY_STRING'])
)
die('You seem to want to do something bad?');
}
if (!preg_match('/http|https/i', $_GET['file'])) {
if (preg_match('/^aqua_is_cute$/', $_GET['debu']) && $_GET['debu'] !== 'aqua_is_cute') {
$file = $_GET["file"];
echo "Neeeeee! Good Job!<br>";
}
} else die('fxck you! What do you want to do ?!');
if($_REQUEST) {
foreach($_REQUEST as $value) {
if(preg_match('/[a-zA-Z]/i', $value))
die('fxck you! I hate English!');
}
}
if (file_get_contents($file) !== 'debu_debu_aqua')
die("Aqua is the cutest five-year-old child in the world! Isn't it ?<br>");
if ( sha1($shana) === sha1($passwd) && $shana != $passwd ){
extract($_GET["flag"]);
echo "Very good! you know my password. But what is flag?<br>";
} else{
die("fxck you! you don't know my password! And you don't know sha1! why you come here!");
}
if(preg_match('/^[a-z0-9]*$/isD', $code) ||
preg_match('/fil|cat|more|tail|tac|less|head|nl|tailf|ass|eval|sort|shell|ob|start|mail|\`|\{|\%|x|\&|\$|\*|\||\<|\"|\'|\=|\?|sou|show|cont|high|reverse|flip|rand|scan|chr|local|sess|id|source|arra|head|light|print|echo|read|inc|flag|1f|info|bin|hex|oct|pi|con|rot|input|\.|log|\^/i', $arg) ) {
die("<br />Neeeeee~! I have disabled all dangerous functions! You can't get my flag =w=");
} else {
include "flag.php";
$code('', $arg);
} ?> 一点一点看,$_SERVER['QUERY_STRING']是get方式传入的内容,它不会进行URL解码,可以用URL编码可以绕过这个限制
然后$_GET['file']不能有http(s),$_GET['debu']要是aqua_is_cute,这个可以用换行符绕过
?deb%75=aq%75a_is_c%75te%0a&file=a

然后是_REQUEST中参数值不能出现字母,_REQUEST是优先读取POST传参再读取GET传参,可以先POST再GET
寄了,BUUOJ环境有问题,本地复现吧。访问1nD3x.php?file=***,明显应该到Aqua is the cutest five-year-old child in the world!那里的die的,但是得到的回显还是fxck you! I hate English!
接着是要满足file_get_contents($file)的结果为debu_debu_aqua,一般这种可以用php://input,但是这里已经有了POST的内容,可以换成data伪协议。
然后是经典的绕HASH,sha1($shana) === sha1($passwd) && $shana != $passwd,直接传数组即可
然后看到extract($_GET["flag"]);,存在变量覆盖。最后一段代码是对$code和$arg进行操作,但是题目并不能直接传参,那就是要用变量覆盖进行传参。
然后if(preg_match('/^[a-z0-9]*$/isD', $code)是code中不能有字母数字,在后面一个正则过滤了很多关键字,这样$arg就不是很好绕过了
最后的$code('', $arg);是create_function,这个出现了很多次了。

成功输出,最后是怎么获取flag。代码执行没有过滤call_user_func,文件包含没有过滤require,目录扫描没有过滤DirectoryIterator
其实一开始想的是无参RCE和取反,后面看了wp一下,在get_defined_vars()中看到一个奇怪的变量ffffffff11111114ggggg,意思就是flag在rea1fl4g.php ,应该是文件读取了。
最后用取反绕过滤
最后的payload
解码即可
最后更新于