├── README.assets ├── Group4.jpg ├── Group5.jpg └── 鬼手游戏逆向交流群聊二维码.png ├── README.md ├── 所需工具 ├── Cheat Engine 7.0.zip ├── OllyICE.zip ├── 代码注入器.exe ├── 口袋西游下载地址.txt ├── 幻想神域下载地址.txt └── 游戏检测的对抗与防护艺术.dll ├── 游戏安全攻防艺术 ├── 001 环境准备.pdf ├── 002 辅助框架的设计.pdf ├── 003 辅助框架的代码实现.pdf └── 004 人物数据查找和代码编写.pdf └── 游戏逆向笔记 ├── 001 从人物血量学习数据查找.pdf ├── 002 通过send断点分析功能call.pdf ├── 003 通过内存关系找万能按键call.pdf ├── 004 参数找寻路call.pdf ├── 005 定位控件输入call.pdf ├── 006 游戏检测的对抗与防护艺术.pdf ├── 007 封包式游戏功能的原理与实现.pdf ├── 008 数据结构逆向—数组(简单版).pdf ├── 009 数据结构逆向—数组(困难版).pdf ├── 010 数据结构逆向—链表.pdf ├── 011 数据结构逆向—二叉树.pdf └── 012 分析技能冷却二叉树.pdf /README.assets/Group4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/README.assets/Group4.jpg -------------------------------------------------------------------------------- /README.assets/Group5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/README.assets/Group5.jpg -------------------------------------------------------------------------------- /README.assets/鬼手游戏逆向交流群聊二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/README.assets/鬼手游戏逆向交流群聊二维码.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 前言 2 | 3 | 本系列文章旨在从零开始学习游戏辅助的工作流程和开发方法,了解游戏背后的攻防对抗手段,重点侧重数据和call的追踪查找。 4 | 5 | 侧重方向在于学习整个分析过程以及思路方法,最终实现的效果和游戏不是关心的重点。 6 | 7 | 涉及到的技术有: 8 | 9 | - windows API Hook 10 | - dll注入 11 | - 汇编语言 12 | - Windows编程 13 | - C/C++基础 14 | 15 | 没有上述的前置知识建议劝退 16 | 17 | ## 游戏 18 | 19 | 文章涉及到的游戏有: 20 | 21 | 1. 口袋西游 22 | 2. 幻想神域 23 | 3. 传奇永恒(新增) 24 | 4. 陆续更新中... 25 | 26 | 27 | ## 交流群 28 | 29 | 点击链接加入群聊【鬼手PC逆向交流5群】:https://jq.qq.com/?_wv=1027&k=ZKEuSv76 30 | 31 | QQ Group:715410952 32 | -------------------------------------------------------------------------------- /所需工具/Cheat Engine 7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/所需工具/Cheat Engine 7.0.zip -------------------------------------------------------------------------------- /所需工具/OllyICE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/所需工具/OllyICE.zip -------------------------------------------------------------------------------- /所需工具/代码注入器.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/所需工具/代码注入器.exe -------------------------------------------------------------------------------- /所需工具/口袋西游下载地址.txt: -------------------------------------------------------------------------------- 1 | 链接:https://pan.baidu.com/s/1oBhYBnBUXKvOkBn_WZULUg 2 | 提取码:6f14 3 | 复制这段内容后打开百度网盘手机App,操作更方便哦 -------------------------------------------------------------------------------- /所需工具/幻想神域下载地址.txt: -------------------------------------------------------------------------------- 1 | 链接:https://pan.baidu.com/s/1zoBhVo7hdkAYyWQqh9FEbw 2 | 提取码:to2g 3 | 复制这段内容后打开百度网盘手机App,操作更方便哦 -------------------------------------------------------------------------------- /所需工具/游戏检测的对抗与防护艺术.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/所需工具/游戏检测的对抗与防护艺术.dll -------------------------------------------------------------------------------- /游戏安全攻防艺术/001 环境准备.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏安全攻防艺术/001 环境准备.pdf -------------------------------------------------------------------------------- /游戏安全攻防艺术/002 辅助框架的设计.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏安全攻防艺术/002 辅助框架的设计.pdf -------------------------------------------------------------------------------- /游戏安全攻防艺术/003 辅助框架的代码实现.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏安全攻防艺术/003 辅助框架的代码实现.pdf -------------------------------------------------------------------------------- /游戏安全攻防艺术/004 人物数据查找和代码编写.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏安全攻防艺术/004 人物数据查找和代码编写.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/001 从人物血量学习数据查找.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/001 从人物血量学习数据查找.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/002 通过send断点分析功能call.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/002 通过send断点分析功能call.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/003 通过内存关系找万能按键call.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/003 通过内存关系找万能按键call.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/004 参数找寻路call.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/004 参数找寻路call.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/005 定位控件输入call.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/005 定位控件输入call.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/006 游戏检测的对抗与防护艺术.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/006 游戏检测的对抗与防护艺术.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/007 封包式游戏功能的原理与实现.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/007 封包式游戏功能的原理与实现.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/008 数据结构逆向—数组(简单版).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/008 数据结构逆向—数组(简单版).pdf -------------------------------------------------------------------------------- /游戏逆向笔记/009 数据结构逆向—数组(困难版).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/009 数据结构逆向—数组(困难版).pdf -------------------------------------------------------------------------------- /游戏逆向笔记/010 数据结构逆向—链表.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/010 数据结构逆向—链表.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/011 数据结构逆向—二叉树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/011 数据结构逆向—二叉树.pdf -------------------------------------------------------------------------------- /游戏逆向笔记/012 分析技能冷却二叉树.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyChen56/GameReverseNote/104c7939d7ffa88523380808c5771f9f5193ffca/游戏逆向笔记/012 分析技能冷却二叉树.pdf --------------------------------------------------------------------------------