命令注入DVWA硬难度

时间:2016-12-25 07:57:46

标签: php code-injection

我正在使用DVWA来了解安全漏洞。在如下所示的命令注入部分中,后端代码为:

https://docs.microsoft.com/en-us/ef/core/miscellaneous/configuring-dbcontext

<?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>";
}

?>

根据我的理解,如果我提供输入|| ls,则代码应将||替换为'',以便注入不起作用。虽然令我惊讶的是注入工作产生了文件的输出,如下所示:

enter image description here

1 个答案:

答案 0 :(得分:1)

你的替换阵列只有一个小陷阱...你需要定义||之前|因为你需要在单个字符之前对双字符执行替换。这是一个有趣的小怪癖!

所以你的数组

// Set blacklist
$substitutions = array(
    '&'  => '',
    ';'  => '',
    '| ' => '',
    '-'  => '',
    '$'  => '',
    '('  => '',
    ')'  => '',
    '`'  => '',
    '||' => '',
); 

应该是

// Set blacklist
$substitutions = array(
    '&'  => '',
    ';'  => '',
    '||' => '',
    '| ' => '',
    '-'  => '',
    '$'  => '',
    '('  => '',
    ')'  => '',
    '`'  => '',
);