美文网首页
新手教程-DVWA全级别教程之命令注入

新手教程-DVWA全级别教程之命令注入

作者: Wudi1 | 来源:发表于2019-05-15 20:09 被阅读0次

    系统环境

    因为网上关于dvwa的相关资料都比较旧,所以想重新过一边dvwa的各个类型的漏洞,顺带初步入门php代码审计相关的知识。环境安装可以直接参照网上教程新手指南:手把手教你如何搭建自己的渗透测试环境,已经写的非常详细,可以直接按照教程一步步安装。

    简介

    Command Injection,即命令注入,是指通过提交恶意构造的参数破坏命令语句结构,从而达到执行恶意命令的目的。PHP命令注入攻击漏洞是PHP应用程序中常见的脚本漏洞之一,国内著名的Web应用程序Discuz! DedeCMS等都曾经存在过该类型漏洞。

    low服务端核心代码

    <?php
    
    if( isset( $_POST[ 'Submit' ]  ) ) {
        // Get input
        $target = $_REQUEST[ 'ip' ];
    
        // Determine OS and execute the ping command.
        if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
            // Windows
            $cmd = shell_exec( 'ping  ' . $target );
        }
        else {
            // *nix
            $cmd = shell_exec( 'ping  -c 4 ' . $target );
        }
    
        // Feedback for the end user
        echo "<pre>{$cmd}</pre>";
    }
    
    ?> 
    

    相关函数介绍
    stristr(string,search,before_search)
    stristr函数搜索字符串在另一字符串中的第一次出现,返回字符串的剩余部分(从匹配点),如果未找到所搜索的字符串,则返回FALSE。参数string规定被搜索的字符串,参数search规定要搜索的字符串(如果该参数是数字,则搜索匹配该数字对应的ASCII值的字符),可选参数before_true为布尔型,默认为false,如果设置为true,函数将返回search参数第一次出现之前的字符串部分。
    php_uname(mode)
    这个函数会返回运行php的操作系统的相关描述,参数mode可取值”a” (此为默认,包含序列”s n r v m”里的所有模式),”s ”(返回操作系统名称),”n”(返回主机名),” r”(返回版本名称),”v”(返回版本信息), ”m”(返回机器类型)。可以看到,服务器通过判断操作系统执行不同ping命令,但是对ip参数并未做任何的过滤,linux可以直接使用&&和;来执行多条命令,导致了严重的命令注入漏洞。
    直接 提交 127.0.0.1&&ls -l 或把 ls -l 改为其他的系统命令也是可以执行的


    命令执行

    Linux下输入127.0.0.1&&cat /etc/shadow甚至可以读取shadow文件。

    Medium服务器核心代码

    <?php
    
    if( isset( $_POST[ 'Submit' ]  ) ) {
        // Get input
        $target = $_REQUEST[ 'ip' ];
    
        // Set blacklist
        $substitutions = array(
            '&&' => '',
            ';'  => '',
        );
    
        // Remove any of the charactars in the array (blacklist).
        $target = str_replace( array_keys( $substitutions ), $substitutions, $target );
    
        // Determine OS and execute the ping command.
        if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
            // Windows
            $cmd = shell_exec( 'ping  ' . $target );
        }
        else {
            // *nix
            $cmd = shell_exec( 'ping  -c 4 ' . $target );
        }
    
        // Feedback for the end user
        echo "<pre>{$cmd}</pre>";
    }
    
    ?> 
    

    对比low的代码,服务端对ip参数做了一定的过滤,即将“&&”和“;”删除,本质上采用了黑名单的方式过滤了一些字符,但是黑名单的模式永远都会存在过滤不全的问题。命令执行同样还是||的方式。所以我们可以采用的方式有很多种。
    ping 127.0.0.1 || ls 当前面的一条命令执行失败的时候执行后面一条命令


    medium

    127.0.0.1 & ls &&的是前面一条命令必须执行成功才会执行后面一条命令,&不管前面的命令是否执行成功后面的命令都会执行


    medium
    127.0.0.1 &;& ls -l 看代码因为“&&” “;”会被替换成空字符,所以“;”被替换成空字符,命令成功执行。
    medium

    high服务器核心代码

    <?php
    
    if( isset( $_POST[ 'Submit' ]  ) ) {
        // Get input
        $target = trim($_REQUEST[ 'ip' ]);
    
        // Set blacklist
        $substitutions = array(
            '&'  => '',
            ';'  => '',
            '| ' => '',
            '-'  => '',
            '$'  => '',
            '('  => '',
            ')'  => '',
            '`'  => '',
            '||' => '',
        );
    
        // Remove any of the charactars in the array (blacklist).
        $target = str_replace( array_keys( $substitutions ), $substitutions, $target );
    
        // Determine OS and execute the ping command.
        if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
            // Windows
            $cmd = shell_exec( 'ping  ' . $target );
        }
        else {
            // *nix
            $cmd = shell_exec( 'ping  -c 4 ' . $target );
        }
    
        // Feedback for the end user
        echo "<pre>{$cmd}</pre>";
    }
    
    ?> 
    

    可以看到在medium的基础上进一步过滤了& ; | - $ ( ) ` ||一些字符,进一步完善了黑名单机制,但是依然可以绕过。可以看到黑名单机制中‘| ’中后面有一个空格,于是这里又成了一个可以利用的地方。
    127.0.0.1|ls -l |是管道符,表示将cmd1的输出作为cmd2的输入,并只打印cmd2执行的结果。


    high

    impossible服务器核心代码

    <?php
    
    if( isset( $_POST[ 'Submit' ]  ) ) {
        // Check Anti-CSRF token
        checkToken( $_REQUEST[ 'user_token' ], $_SESSION[ 'session_token' ], 'index.php' );
    
        // Get input
        $target = $_REQUEST[ 'ip' ];
        $target = stripslashes( $target );
    
        // Split the IP into 4 octects
        $octet = explode( ".", $target );
    
        // Check IF each octet is an integer
        if( ( is_numeric( $octet[0] ) ) && ( is_numeric( $octet[1] ) ) && ( is_numeric( $octet[2] ) ) && ( is_numeric( $octet[3] ) ) && ( sizeof( $octet ) == 4 ) ) {
            // If all 4 octets are int's put the IP back together.
            $target = $octet[0] . '.' . $octet[1] . '.' . $octet[2] . '.' . $octet[3];
    
            // Determine OS and execute the ping command.
            if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
                // Windows
                $cmd = shell_exec( 'ping  ' . $target );
            }
            else {
                // *nix
                $cmd = shell_exec( 'ping  -c 4 ' . $target );
            }
    
            // Feedback for the end user
            echo "<pre>{$cmd}</pre>";
        }
        else {
            // Ops. Let the user name theres a mistake
            echo '<pre>ERROR: You have entered an invalid IP.</pre>';
        }
    }
    
    // Generate Anti-CSRF token
    generateSessionToken();
    
    ?> 
    

    相关函数介绍
    stripslashes(string)
    stripslashes函数会删除字符串string中的反斜杠,返回已剥离反斜杠的字符串。
    explode(separator,string,limit)
    把字符串打散为数组,返回字符串的数组。参数separator规定在哪里分割字符串,参数string是要分割的字符串,可选参数limit规定所返回的数组元素的数目。
    is_numeric(string)
    检测string是否为数字或数字字符串,如果是返回TRUE,否则返回FALSE。
    可以看到,Impossible级别的代码加入了Anti-CSRF token,同时对参数ip进行了严格的限制,只有诸如“数字.数字.数字.数字”的输入才会被接收执行,因此不存在命令注入漏洞。

    参考文档

    相关文章

      网友评论

          本文标题:新手教程-DVWA全级别教程之命令注入

          本文链接:https://www.haomeiwen.com/subject/lnouaqtx.html