文章列表

26k 24 分钟

❡ CTF 学习笔记 ❡ CTF ❡ 定义 CTF 就像一场 “黑客版的寻宝游戏”,参赛者通过破解密码、挖漏洞、逆向程序等技术手段,在虚拟世界里找到隐藏的 “flag”(一串特定字符),谁找得快、技术强谁就赢。 ❡ 竞赛模式 解题模式(Jeopardy) * 核心机制 *:通过解决安全技术题目获取 flag,按题目分值和解题时间排名,常见于线上选拔赛。 * 动态积分规则 *:题目初始分值随解题人数增加而递减,前三名(一血、二血、三血)获得额外奖励分。 * 题型分类 *:Web...
619k 9:22

❡ 语法篇 ❡ 基础背景知识 c# 编写的应用程序必须放置于.NET 环境中才能正常允许。C# 代码最终会被编译为中间语言 "(MSIL)"。 类库是以.dll 结尾,不能直接运行,而启动项目是以.exe 结尾可以直接运行。 语法格式123456789101112131415161718192021using System;namespace MyApp{ class Test1 { static void Main(string[] args) {...
372 1 分钟

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. ❡ Quick Start ❡ Create a new post 1$ hexo new "My New Post" More info: Writing ❡ Run...