Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

BuckeyeCTF 2025 比赛的题解,涉及方向:Web, Crypto, Pwn, Misc, Forensics

统计相关笔记

Python的Numpy库常用函数

文件格式 File Formats常见的存储数据的文件格式: CSV纯文本文件,包含一行行数据(逗号分隔)。 A plain text file contains rows of data (comma separated values)。 例子: 12Sherlock Holmes,221B Baker Street,DetectiveJames Moriarty,Reichenbach ...

Here's something encrypted, password is required to continue reading.

症状 中 德 痰 Der Schleim 炎症 Entzündung 部位 中 德 扁桃体 Die Mandel 药 中 德 布洛芬 Ibuprofen

前置基础Pwn5 先查看文件,发现是elf文件,然后给它加上运行权限并运行它。(注意,在Linux中这种外来文件如果不专门添加运行权限我们是无法运行它的。) 1234567└─$ file Welcome_to_CTFshowWelcome_to_CTFshow: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), static...

Here's something encrypted, password is required to continue reading.

Here's something encrypted, password is required to continue reading.

这个板块算是Web的入门板块,考点都比较基础。 第一章Base64编码隐藏 按F12查看网页前端信息: 不难发现这里有Base64编码的内容: 1const correctPassword = "Q1RGe2Vhc3lfYmFzZTY0fQ=="; Base64解码得到密码(同样也是flag): 1CTF{easy_base64} HTTP头注入尝...