[HCTF 2018]WarmUp 1
资源收集,查看源代码之后,看到如下代码:
<?php
highlight_file(__FILE__);
class emmm
{
public static function checkFile(&$page)
{
$whitelist = ["source"=>"source.php","hint"=>"hint.php"];
if (! isset($page) || !is_string($page)) {
echo "you can't see it";
return false;
}
if (in_array($page, $whitelist)) {
return true;
}
$_page = mb_substr(
$page,
0,
mb_strpos($page . '?', '?')
);
if (in_array($_page, $whitelist)) {
return true;
}
$_page = urldecode($page);
$_page = mb_substr(
$_page,
0,
mb_strpos($_page . '?', '?')
);
if (in_array($_page, $whitelist)) {
return true;
}
echo "you can't see it";
return false;
}
}
if (! empty($_REQUEST['file'])
&& is_string($_REQUEST['file'])
&& emmm::checkFile($_REQUEST['file'])
) {
include $_REQUEST['file'];
exit;
} else {
echo "<br><img src=\"https://i.loli.net/2018/11/01/5bdb0d93dc794.jpg\" />";
}
?>
解析代码:
- &$page:引用传递,为了防止内部修改变量而改变外部变量。
- in_array(变量1,变量2):判断变量1是否存在变量2中。
- mb_substr():取指定长度的子字符串,取左不取右。
- mb_strpos():查找一个字符串中某个字符或子字符串第一次出现的位置,没有出现的自动在后面补一个。
- urldecode():解码的 URL 编码字符串。
解题思路:
-
传入的flie的内容必须在 $whitelist 变量里面。
-
?file=( $whitelist )------------->这样输入的内容会被截取一整段.如果希望不被截取,可以在后面加一个?
-
最后查询运行到 include $_REQUEST[‘file’];从而得到flag
详细步骤:
输入?file=source.php没有什么用,换成file=hint.php,从而得到flag not here, and flag in ffffllllaaaagggg,
根据flag not here, and flag in ,在网站上面查找ffffllllaaaagggg文件夹,发现被过滤了,所以要在?file=hint.php后面再加一个?---->?file=hint.php?
得到flag