<?php
highlight_file(__FILE__);
class emmm
{
public static function checkFile(&$page) // 判断check函数主体
{
$whitelist = ["source"=>"source.php","hint"=>"hint.php"];//白名单,就这些可以作为page传进来
//判断:不存在或者不是字符串的,就返回false
if (! isset($page) || !is_string($page)) {
echo "you can‘t see it";
return false;
}
//判断page变量是否在白名单中
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 . ‘?‘, ‘?‘)//截取到?之前的page部分,再加上0位之前的那个?,就是两个?之间的内容
);
if (in_array($_page, $whitelist)) {
return true;
}
echo "you can‘t see it";
return false;
}
}
if (! empty($_REQUEST[‘file‘]) //参数file不能为空
&& is_string($_REQUEST[‘file‘]) //参数file为字符串
&& emmm::checkFile($_REQUEST[‘file‘]) // file应该返回值为Ture
) {
include $_REQUEST[‘file‘];
exit;
} else {
echo "<br><img src=\"https://i.loli.net/2018/11/01/5bdb0d93dc794.jpg\" />";
}