dvwa 代码注入impossible代码审计
<?php
if( isset( $_POST[ 'Submit' ] ) ) {
// Check Anti-CSRF token
checkToken( $_REQUEST[ 'user_token' ], $_SESSION[ 'session_token' ], 'index.php' );
// 检查token值是否正确
// Get input
$target = $_REQUEST[ 'ip' ];
$target = stripslashes( $target );
// 对用户输入的IP进行过滤将转义字符去除
// 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
// Windows
$cmd = shell_exec( 'ping ' . $target );
//进行ping操作
}
else {
// *nix
$cmd = shell_exec( 'ping -c 4 ' . $target );
//不是windows就ping4下
}
// Feedback for the end user
$html .= "<pre>{$cmd}</pre>";
//输出标签
}
else {
// Ops. Let the user name theres a mistake
$html .= '<pre>ERROR: You have entered an invalid IP.</pre>';
}
}
// Generate Anti-CSRF token
generateSessionToken();
//重新获取token值
?>
stripslashes ()
stripslahes()函数是用来去除字符串中的转义字符的
<?php
$char="a\n\n\n b";
echo stripslashes($char);
?>
explode()
函数用来分割字符串的
<?php
$ip=$_GET[777];
print_r(explode('.',$ip));
?>
is_numeric()
函数用于检查一个值是否可以被解析为一个数字。它接受一个参数,并返回一个布尔值,指示参数是否可以被解析为一个有效的数字。
<?php
var_dump (is_numeric('abc'));
?>