文章會討論 DVWA 中低、中、高、不可能級別的命令行注入php
這裏的需求是在服務器上能夠 ping 一下其餘的服務器
正則表達式
Hacker 試下輸入 192.168.31.130; cat /etc/apache2/apache2.conf;shell
瞬間爆炸, 居然是直接執行 shell 的結果。再看看代碼apache
<?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>"; } ?>
居然沒有任何的參數校驗!這主機安全能夠說是形同虛設。 Hacker 居然不廢任何力氣,就獲得一個 weshell 了!接下來的攻擊主要是就看攻擊者的想象力了,什麼改掉你的文件,什麼建立個新頁面作負載均衡,批量將 php 重名了。。。跨域
中級代碼有作了一點參數校驗安全
<?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>"; } ?>
會將有;
和&&
都移除了。服務器
Hacker 試了一下 || cat /etc/apache2/apache2.conf
。。。注入成功。而 ||
的意思是第一條命令執行失敗就會執行下一條。。。session
Hacker 又試了一下 & cat /etc/apache2/apache2.conf
。。。注入也成功。 &
是後臺執行,而後再執行新的代碼。負載均衡
主要是過濾太少的參數了。spa
高級的話就過濾的參數比較多。
<?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>"; } ?>
用 |cat /etc/apache2/apache2.conf
就能夠了,由於 substitutions 中的 |
後面有個空格, |+<space>
纔會被替換 。。。有點無語
<?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(); ?>
不能級別,添加了 token 用來對付 CSRF 跨域請求攻擊。還對參數進行真正的驗證,只有 ip 參數纔可以 ping。若是是我寫的話可能會用估計會用正則表達式。這個方式驗證也能夠了。