第二关:Command Injection(命令注入)
??????命令注入,是指通过提交恶意构造的参数破坏命令语句结构,从而达到执行恶意命令的目的。PHP命令注入攻击漏洞是PHP应用程序中常见的脚本漏洞之一。
Low
<?php
if( isset( $_POST[ 'Submit' ] ) ) {
$target = $_REQUEST[ 'ip' ];
if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
$cmd = shell_exec( 'ping ' . $target );
}
else {
$cmd = shell_exec( 'ping -c 4 ' . $target );
}
echo "<pre>{$cmd}</pre>";
}
?>
stristr(str,search,before_search)函数 ??????stristr函数搜索字符串str在字符串search中第一次出现的位置,返回字符串的剩余部分(从匹配点),如果未找到所搜索的字符串,则返回FALSE。可选参数before_true为布尔型,默认为“false”,如果设置为“true”,函数将返回search参数第一次出现之前的字符串部分。
php_uname(str)函数 ??????该函数会返回运行php的操作系统的相关描述,参数str可取值”a” (此为默认,包含序列”s n r v m”里的所有模式),”s”(返回操作系统名称),”n”(返回主机名),” r”(返回版本名称),”v”(返回版本信息), ”m”(返回机器类型)。
??????服务器通过判断操作系统执行不同ping命令,但是对ip参数并未做任何的过滤,导致了严重的命令注入漏洞。漏洞利用,window和linux系统都可以用&&来执行多条命令。
Medium
<?php
if( isset( $_POST[ 'Submit' ] ) ) {
$target = $_REQUEST[ 'ip' ];
$substitutions = array(
'&&' => '',
';' => '',
);
$target = str_replace( array_keys( $substitutions ), $substitutions, $target );
if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
$cmd = shell_exec( 'ping ' . $target );
}
else {
$cmd = shell_exec( 'ping -c 4 ' . $target );
}
echo "<pre>{$cmd}</pre>";
}
?>
??????分析代码可得,代码中将’&&’,’;'这两个字符转换为空,相当于对用户输入的部分数据设置了黑名单,因此可使用其他符号进行绕过
使用 & 进行绕过
&&与&的区别 ??????在Windows中,使用语句com1 && com2 ,如果com1执行错误,则不执行com2;使用语句com1 & com2 ,无论com1是否执行成功,com2都会被执行 ??????在Linux中,使用语句com1 && com2 ,如果com1执行错误,则不执行com2;使用语句com1 & com2 ,无论com1是否执行成功,com2都会被执行,且会首先被执行
使用 &;& 进行绕过 ??????语句被后台执行,; 被置空,所以语句变为com1&&com2 ,成功绕过并执行
使用 || 进行绕过 ??????com1 || com2,如果com1成功执行则com2不会被执行,com1执行错误则执行com2
High
<?php
if( isset( $_POST[ 'Submit' ] ) ) {
$target = trim($_REQUEST[ 'ip' ]);
$substitutions = array(
'&' => '',
';' => '',
'| ' => '',
'-' => '',
'$' => '',
'(' => '',
')' => '',
'`' => '',
'||' => '',
);
$target = str_replace( array_keys( $substitutions ), $substitutions, $target );
if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
$cmd = shell_exec( 'ping ' . $target );
}
else {
$cmd = shell_exec( 'ping -c 4 ' . $target );
}
echo "<pre>{$cmd}</pre>";
}
?>
??????从源码中可以看到,代码对大部分的连接字符做了黑名单处理,但是可以看到黑名单中第三行的| 后面带有空格,所有可以使用管道符| 进行命令注入 cmd1 | cmd2 :| 表示为管道符,意为将cmd1的输出作为cmd2的输入,并且只打印cmd2的结果
Impossible
<?php
if( isset( $_POST[ 'Submit' ] ) ) {
checkToken( $_REQUEST[ 'user_token' ], $_SESSION[ 'session_token' ], 'index.php' );
$target = $_REQUEST[ 'ip' ];
$target = stripslashes( $target );
$octet = explode( ".", $target );
if( ( is_numeric( $octet[0] ) ) && ( is_numeric( $octet[1] ) ) && ( is_numeric( $octet[2] ) ) && ( is_numeric( $octet[3] ) ) && ( sizeof( $octet ) == 4 ) ) {
$target = $octet[0] . '.' . $octet[1] . '.' . $octet[2] . '.' . $octet[3];
if( stristr( php_uname( 's' ), 'Windows NT' ) ) {
$cmd = shell_exec( 'ping ' . $target );
}
else {
$cmd = shell_exec( 'ping -c 4 ' . $target );
}
echo "<pre>{$cmd}</pre>";
}
else {
echo '<pre>ERROR: You have entered an invalid IP.</pre>';
}
}
generateSessionToken();
?>
stripslashes(str) ??????stripslashes函数会删除字符串str中的反斜杠,返回已去除反斜杠的字符串。
explode(separator,str,limit) ??????把字符串写入为数组,返回该数组。参数separator指定什么符号分割字符串,参数str是要分割成数组的字符串,可选参数limit规定所返回的数组元素的数目。
is_numeric(str) ??????检测str是否为数字或数字字符串,如果是返回TRUE,否则返回FALSE
explode(separator,str,limit) ??????把字符串写入为数组,返回该数组。参数separator指定什么符号分割字符串,参数str是要分割成数组的字符串,可选参数limit规定所返回的数组元素的数目。
is_numeric(str) ??????检测str是否为数字或数字字符串,如果是返回TRUE,否则返回FALSE
??????分析源码看到impossible的代码加入了token机制,同时对用户输入的参数ip进行了严格的限制,只有字符为数字时才会被系统执行,因此不存在命令注入漏洞
|