管理员

Track-子羽

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

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

CTF-24解题思路

### 源码分析: ```php <?php error_reporting(0); if(isset($_GET['c'])){ $c = $_GET['c']; if(!preg_match("/flag/i", $c)){ eval($

 2021-11-17
 0 
 936 

CTF-23解题思路

## 解码后得到源码 ```php <?php error_reporting(0); ?> <html lang="zh-CN"> <head&

 2021-11-17
 0 
 787 

CTF-21解题思路

## 源码分析: ```php <?php if (isset($_GET['a']) and isset($_GET['b'])) { if ($_GET['a'] != $_GET['b']) if (md5($_GET['a']) == md5(

 2021-11-17
 0 
 798 

CTF-20解题思路

源码分析:<?php$md51 = md5('QNKCDZO');$a = <span class="label label-primary">@$_GET['a'];#CTL{n}$md52</span> = <span class="labe

 2021-11-17
 0 
 1275 

CTF-19解题思路

## 源码分析: ```php <?php header('Content-type:text/html;charset=utf-8'); error_reporting(0); highlight_file(__file__); //level 1 if

 2021-11-17
 0 
 943 

CTF-18解题思路

### 源码分析: ``` <?php highlight_file(__FILE__); error_reporting(0); class a { public $uname; public $password;

 2021-11-17
 0 
 996 

CTF-16解题思路

## 源码分析: ```php <?php highlight_file(__FILE__); class main{ public $settings; public $params; public function __construct(){

 2021-11-17
 0 
 1063 

CTF-15解题思路

## 源码分析: ```php `<?php highlight_file('index.php'); include('flag.php'); if(eregi("hackerDJ",$_GET["id"])) { echo

 2021-11-17
 0 
 818 

CTF-14解题思路

## 源码分析: ```php <?php highlight_file('index.php'); include('flag.php'); if (isset ($_GET['password'])) { # password必须只包含保护数字和字母 if

 2021-11-17
 0 
 994