freeBuf
主站

分类

漏洞 工具 极客 Web安全 系统安全 网络安全 无线安全 设备/客户端安全 数据安全 安全管理 企业安全 工控安全

特色

头条 人物志 活动 视频 观点 招聘 报告 资讯 区块链安全 标准与合规 容器安全 公开课

点我创作

试试在FreeBuf发布您的第一篇文章 让安全圈留下您的足迹
我知道了

官方公众号企业安全新浪微博

FreeBuf.COM网络安全行业门户,每日发布专业的安全资讯、技术剖析。

FreeBuf+小程序

FreeBuf+小程序

DVWA—命令执行练习
carpediem 2024-05-13 17:27:01 81440

Low

首先进来就看到了一个ping命令的输入框

1715588984_6641cf78a3aca1c214dcf.png!small?1715589089484

先输入127.0.0.1来测试一下

1715589184_6641d0408bc88cd75bb5c.png!small?1715589288678

正常回显,再尝试通过|符号来进行命令执行1715589283_6641d0a3c3d026cc16c57.png!small?1715589390364

可以看到能够进行命令执行。

这里说一下一些常用的命令拼接符,Windows或Linux下:

command1 ; command2 : 先执行command1后执行comnand2
command1 & command2 : 先执行comnand2后执行command1
command1 && command2 : 先执行command1后执行comnand2
command1 | command2 : 只执行command2
command1 || command2 : command1执行失败, 再执行command2(若command1执行成功,就不再执行command2)

下面来分析一下源码

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

?> 

首先就是通过POST来进行一个提交,用REQUEST来接受一个ip,之后就是使用stristr(),php_uname()函数来判断该系统是否为Windows系统。下面简单介绍一下这两个函数

stristr(a,b):查找函数,它会搜索b字符串在a中的第一次出现。

php_uname():返回运行php的操作系统的有关信息,具体介绍请参考这篇文章(https://www.php.net/manual/zh/function.php-uname.php)

再回到正轨上,如果判断是Windows系统,则会将“ping”与输入的ip进行拼接,然后由shell_exec()函数来执行,并将执行结果返回到cmd变量中,否则将以Linux系统来执行ping命令。这里之所以要进行判断,主要是因为Linux系统如果不带上-c 参数的话会一直ping下去。最后将ping的返回值打印出来。

这里再介绍一下shell_exec()函数,它与exec()、system()、passthru()、backquote()函数均为命令执行函数,只是system与passthru函数在执行时会直接打印出结果,而其他三个则需要用打印函数打印出来,不同的是,exec()函数返回的是一个数组,需要用var_dump()进行打印,否则只能打印最后一行,而backquote()函数需要使用反引号“ ` ”。

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等级差不多,只是多加了几个过滤,可以看到,这次把&&和;给过滤了,但是他没有过滤‘|’,所以我们依然可以使用‘ | ’来进行命令执行

1715591303_6641d887e8b79fbc23e54.png!small可以看到能够正常执行

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

这次他几乎把能使用的特殊字符都给过滤了,但是当你仔细分析源码的时候就会发现,他在过滤‘ | ’时多加了一个空格,导致过滤的是'| ',而不是'|'。1715591565_6641d98dab08974c7bf91.png!small?1715591670023所以我们不用空格,直接用‘|’进行拼接1715591715_6641da2301ada2ed0bf2e.png!small?1715591819449成功执行

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();
 
?> 

这一关与前几关不同的是,这一关限制了用户的输入格式,而不是过滤用户输入的字符

$octet = explode( ".", $target );

这句话以为分割符,将$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]; 
}
else {
      // Ops. Let the user name theres a mistake
      echo '<pre>ERROR: You have entered an invalid IP.</pre>'; 
}

这段话则是分别对上面经过 .  分隔的元素进行判断是否为数字,如果都为数字,则将他们再次用 进行连接,否则就会报错。


# 漏洞 # 网络安全 # web安全 # 网络安全技术 # 命令执行
免责声明
1.一般免责声明:本文所提供的技术信息仅供参考,不构成任何专业建议。读者应根据自身情况谨慎使用且应遵守《中华人民共和国网络安全法》,作者及发布平台不对因使用本文信息而导致的任何直接或间接责任或损失负责。
2. 适用性声明:文中技术内容可能不适用于所有情况或系统,在实际应用前请充分测试和评估。若因使用不当造成的任何问题,相关方不承担责任。
3. 更新声明:技术发展迅速,文章内容可能存在滞后性。读者需自行判断信息的时效性,因依据过时内容产生的后果,作者及发布平台不承担责任。
本文为 carpediem 独立观点,未经授权禁止转载。
如需授权、对文章有疑问或需删除稿件,请联系 FreeBuf 客服小蜜蜂(微信:freebee1024)
被以下专辑收录,发现更多精彩内容
+ 收入我的专辑
+ 加入我的收藏
carpediem LV.1
这家伙太懒了,还未填写个人描述!
  • 1 文章数
  • 0 关注者
文章目录