管理员

Track-子羽

0关注
49粉丝
52文章
返回网站首页

您已发布 52篇文章作品写文章

CTF-12解题思路

## 源码分析 ```php <?php echo "猜猜正确的flag是什么"; $flag = "flag{xxxxxxxxxxxxxxxxxxxxxxxxxxxx}"; if (isset($_GET['flag'])) { #CTL{

 2021-11-21
 0 
 931 

CTF-33解题思路

### 源码分析: ```php <h3>挑战VIP会员的第一天<h3/> <?php error_reporting(0); highlight_file(__FILE__); include('flag.php');#CTL{

 2021-11-17
 0 
 1060 

CTF-32解题思路

### 源码分析: ```php <?php //取反 include('flag.php'); highlight_file(__FILE__); if(isset($_GET['v1']) && isset($_GET['v2']) &am

 2021-11-17
 0 
 942 

CTF-31解题思路

### 源码分析: ```php <?php highlight_file(__FILE__); error_reporting(0); include("flag.php"); function getFlag(&$v1,&$v2

 2021-11-17
 0 
 855 

CTF-30解题思路

### 源码分析: ```php <?php include('flag.php'); highlight_file(__FILE__); error_reporting(0); function filter($num) { $num=str_

 2021-11-17
 0 
 792 

CTF-29解题思路

### 源码分析: ```php <?php error_reporting(0); highlight_file(__FILE__); function filter($file) { if(preg_match('/compress|root|zip|con

 2021-11-17
 0 
 841 

CTF-28解题思路

### 源码分析: ```php <?php highlight_file(__FILE__); include("flag.php"); //flag in class flag; $ctfshow = new ctfshow(); #CTL

 2021-11-17
 0 
 845 

CTF-27解题思路

### 源码分析: ```php <?php include("flag.php"); highlight_file(__FILE__); if(isset($_GET['num'])) { $num = $_GET['num

 2021-11-17
 0 
 831 

CTF-26解题思路

### 源码分析: ```php <?php // flag in flag.php if(isset($_POST['c'])) { $c= $_POST['c']; eval($c); } else { highl

 2021-11-17
 0 
 846 

CTF-25解题思路

### 源码分析: ```php <?php error_reporting(0); if(isset($_GET['c'])) { $c = $_GET['c']; if(!preg_match("/flag|system|exec|shell|php|\.|

 2021-11-17
 0 
 959