新手向 DVWA使用教程一 Command Injection 命令行注入

在low等级中,查看源代码我们可以得知:



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

对于命令注入行为毫无防范,执行命令如下所示:
新手向 DVWA使用教程一 Command Injection 命令行注入_第1张图片在安全等级为中等时候,查看源代码可得:




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

用户输入部分使用str_replace()函数过滤,过滤(&& , ;)字符。
比较&和&&字符的差别:
&字符用于执行两种命令时,无论前者是否正确执行,后者均会执行。
这里演示 pings baidu.com&&net user
我们都知道pings是一个错误命令,我们进行测试:
新手向 DVWA使用教程一 Command Injection 命令行注入_第2张图片
可以看出,后者命令成功执行。
使用&&字符时候,代表如果前者命令无法执行,后者就不会执行。
继续演示,pings baidu.com&&net user

在这里插入图片描述可以看出后者命令无法继续。

你可能感兴趣的:(新手向 DVWA使用教程一 Command Injection 命令行注入)