惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
有赞技术团队
有赞技术团队
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
Vercel News
Vercel News
IT之家
IT之家
MyScale Blog
MyScale Blog
博客园_首页
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
罗磊的独立博客

Mox的笔记库

2026PPoPP MLIR Tutorial学习 | Mox的笔记库 MacOS配置《明日方舟:终末地》 | Mox的笔记库 2025:向内生长 | Mox的笔记库 由mlir::ExecutionEngine引发的跨系统问题 | Mox的笔记库 WSL2配置Cuda-Tile环境记录(未完待续) | Mox的笔记库 Vibe Coding手搓项目记录 | Mox的笔记库 给Debian上包——以DuckDB为例 | Mox的笔记库 UCPD.sys事件存档 | Mox的笔记库 换新电脑之Mac mini M4从购买到配置 | Mox的笔记库 Mac配置MLX-C开发环境 | Mox的笔记库 RISC-V meets RDBMS——RISC-V架构上可运行数据库一览 | Mox的笔记库 DuckDB Sort实现调查 | Mox的笔记库 修复Redis在树莓派5上无法运行的问题 | Mox的笔记库 如何在MLIR中自定义类型并且输出运行 | Mox的笔记库 网站网络结构变更记录 | Mox的笔记库 EDBT25论文阅读:PhoebeDB——A Disk-Based RDBMS Kernel for High-Performance and Cost-Effective OLTP SIGMOD25论文阅读:BPF-DB:——A Kernel-Embedded Transactional Database Management System For eBPF Applications Apache Arrow Gandiva项目解析 | Mox的笔记库 VLDB24论文阅读:Cloud-Native Database Systems and Unikernels——Reimagining OS Abstractions for Modern Hardware NoisePage源码分析(未完待续) | Mox的笔记库 VLDB20论文阅读:Mainlining Databases——Supporting Fast Transactional Workloads on Universal Columnar Data File Formats VLDB17论文阅读:Relaxed Operator Fusion for In-Memory Databases:Making Compilation, Vectorization, and Prefetching Work Together At Last 论文阅读:How not to structure your database-backed web applications——a study of performance bugs in the wild SIGMOD24阅读:ROME——Robust Query Optimization via Parallel Multi-Plan Execution 文章阅读:First Past the Post-Evaluating Query Optimization in MongoDB SIGMOD文章阅读:Apache Calcite——A Foundational Framework for Optimized Query Processing Over Heterogeneous Data Sources VLDB23论文阅读:Analyzing the Impact of Cardinality Estimation on Execution Plans in Microsoft SQL Server SIGMOD22论文阅读:Efficient Massively Parallel Join Optimization for Large Queries VLDB论文阅读:Weaving Relations for Cache Performance VLDB22论文阅读:ConnectorX——Accelerating Data Loading From Databases to Dataframes
2021XCTF回顾 | Mox的笔记库
MocusEZ · 2022-01-01 · via Mox的笔记库

第一次打CTF打到凌晨1点,记录一下

2022.1.8更新

SCTF2021的项目仓库与文档 https://syclover.feishu.cn/docs/doccnmKCtL4ABewkf89aAJXIdmg https://github.com/SycloverTeam/SCTF2021

This is a tree

看一下每个文件夹下面的文件内容都是4个字符,猜到应该是Base64编码

一开始没准备做,但在学弟的热情下,还是干了

python的OS模块之前没用过,写脚本花了很长时间

import os

i=[]

for root,dirs,files in os.walk(r"D:\Secruity\2021_12_25XCTF\This_is_a tree"):

for file in files:

#获取文件所属目录

# print(root)

#获取文件路径

with open(os.path.join(root,file),encoding='utf-8') as txt:

print(txt.readline())

i.append(txt.readline())

print(i)

把结果Base64化,推荐这个网站

image.png

题目好像有说要按特定顺序,但当时没注意,直接跑python的base64模块会出现编码问题,也可能是哪里不会配置的缘故

Chinese traditional culture is broad and profound! So I Want Give You My Flag But You Need Decode It.Enjoy The Flag!!:师 兑 复 损 巽 震 晋 姤 大过 讼 噬嗑 震 恒 节 豫

这里上百度搜索,没有任何提示,知道用bing以后才发现,八卦密码已经被国内的CTF玩出花来了

https://github.com/BjdsecCA/BJDCTF2020_January

参照那个脚本(0x08 伏羲六十四卦)写出解密脚本就Ok

把八卦转二进制,然后解码

ss="010000110110100000110001011011100100000101011111011110010111100101100100011100110010000100"

enc=''

for i in range(0,len(ss),8):

enc+=chr(eval('0b'+ss[i:i+8]))

print(enc)

flag:

5TXD185H7~XR6KMASFFICX7.jpg

login_me

Go语言的网络框架,Gin的SSTI(这个真不懂)

我还以为是爆破,写了个爆破脚本

import requests

url="http://124.71.166.197:18001/admin/index"

headers={"X-Real-Ip":"127.0.0.1"}

with open("aa1.txt", 'w') as tf:

for i in range(49,100):

params={"id":"0","age":str(i)}

r=requests.get(url=url,params=params,headers=headers)

print(r.status_code)

print(r.text)

tf.write(r.text)

然而并没有用,详细题解看看雪大佬的

[2021SCTF]web-Loginme wp

921448_7RHJUQCW5S3MR9V.png

拉了,该去学点web知识

看到看雪的版主要附件,我上传了一份到天翼网盘

https://cloud.189.cn/web/share?code=VvuUfuU3mA3a(访问码:l6r9)


avatar

探索未曾设想的道路