background picture of the home page

欢迎~分享你的学习笔记

自闭症粪菌移植

肠菌移植管道的原理 留置管\连接管道\导丝 菌群主要集中在大肠 胃内:乳酸\链球\幽门螺旋杆菌

thumbnail of the cover of the post

0xGame 2024 Crypto

第一道题 0yHbnf{Uif_Cfhjoojoh_Pg_Dszqup} 提示凯撒加密 解密步骤: - 0 保持不变 - y -> x - H -> G - b -> a - n -> m - f -> e 所以 0yHbnf 解密为 0xGame。 接下来的部分 {Uif

thumbnail of the cover of the post

0xGame RE 2024

0xGame 2024 WP1 RE 一小部分 第一道题下载BabyBase拖到IDA 查看字符串字符串 可以看见有Base64编码表以及Base64字符串编码 “db 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/

thumbnail of the cover of the post

过滤驱动

代码例子来源: Win驱动9]Windows分层驱动_windows分层驱动程序 数据-CSDN博客 过滤驱动是一种独立的驱动程序,直接插入内核驱动栈中,拦截并处理驱动程序之间的数据传输。它可以拦截底层的I/O请求,并在不改变原始请求的情况下,修改、延迟或直接处理这些请求。 过滤驱动:位于设备驱动程

thumbnail of the cover of the post

Anti-Cheat Toolkit 游戏逆向分析

Anti-Cheat Toolkit 游戏逆向分析 Anti-Cheat Toolkit介绍 他是一款给Unity 3D 游戏引擎提供保护的插件。 Anti-Cheat Toolkit可以拿来干什么? 保护内存中的变量。 保护和扩展PlayerPrefs和二进制文件。 生成构建代码签名以进行篡改检查

thumbnail of the cover of the post

C++类的内存分布

C++类的内存分布 1.非静态成员变量,虚函数,内存对齐会影响类内存大小.本文优先考虑64位程序

thumbnail of the cover of the post

MFC事件逆向分析

MFC事件逆向分析 选用测试软件:家庭账本3.5.9 相较于Win32窗口编程,拿到消息后可以在消息处理回调函数里面寻找对应的消息处理函数不同 MFC程序的运行常常令我摸不着头脑,有时候根本就不知道如何去找到对应的处理函数,例如按钮事件的事件处理函数。 最近遇到一些MFC的ctf题目和一些MFC写的

thumbnail of the cover of the post

C++特征码搜索

#include <vector> #include <Windows.h> #include <iostream> #include <sstream> #include <string> ​ //字符串转换成整数表 std::vector<int> BuildSkipTable(const st

thumbnail of the cover of the post