Press "Enter" to skip to content

月度归档: 2021 年 4 月

TEA算法

TEA 算法介绍 TEA(Tiny Encryption Algorithm), 一次可以加密64 bit(8 byte, 或2 int_32),使用一个128 bit(16 byte, 或4 int_32)的key。使用一个delta常数,通常为0x9E3779B9。推荐迭代轮数为64轮,最少32…

Comments closed

redemption_code WriteUp

题目来源 2021 虎符CTF 初步分析 我们首先使用file命令初步分析 这是一个运行在Linux上的Mips32架构的可执行文件 逆向分析 我们使用IDA打开文件 main() 我们观察main函数: 发现主要的处理过程应该在pre()和server_check_redemption_code(…

Comments closed