├── .DS_Store ├── LICENSE ├── README.md ├── Windows PE权威指南 └── 随手笔记-PE概述-Object Pascal描述(连载).pdf ├── win32 api详解 ├── API HOOK-全局键盘钩子消息实战.pdf ├── API HOOK-全局键盘钩子消息实战Ex.pdf ├── DLL劫持.pdf └── win32 api详解.pdf ├── windows驱动学习 ├── Windows内核学习-连载.pdf └── windows10内核驱动运行与调试(环境搭建).pdf ├── 汇编语言概述 └── 随手笔记-汇编语言概述-连载.pdf ├── 相关外文资料 ├── intel开发手册 │ ├── IA-32卷3:系统编程指南.pdf │ └── Intel开发手册3卷全.pdf ├── 堆栈 │ └── us-16-Yason-Windows-10-Segment-Heap-Internals-wp.pdf └── 文件结构 │ ├── ELF_Format.pdf │ └── coff.pdf ├── 自制的小软件 ├── PE查询器 │ └── MyPE.exe └── dll注入 │ └── 远线程注入工具.exe ├── 调试小记 ├── ASPack-2.x脱壳小记.pdf ├── 快速失败.pdf ├── 脱壳小记.pdf └── 记录一种简单的反调试手段(调试随手笔记).pdf ├── 软件调试第二版 └── 卷一 │ └── 软件调试第二版-卷一读书笔记.pdf └── 逆向工程核心技术原理 ├── .DS_Store ├── 1-PE文件格式详细解析(一).md ├── 2-PE文件格式详细解析(二)--IAT.md ├── 3-PE文件格式详细解析(三)--EAT.md ├── 5-PE文件格式详细解析(五)-- 调试UPX压缩的notepad程序.md ├── 6-PE文件格式详细解析(六)-- 基址重定位表(Base Relocation Table).md ├── 7-Windows消息钩取.md ├── 8-DLL注入和卸载.md ├── PE文件格式详细解析(四)-- 运行时压缩及UPX压缩调试.md └── Readme.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/README.md -------------------------------------------------------------------------------- /Windows PE权威指南/随手笔记-PE概述-Object Pascal描述(连载).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/Windows PE权威指南/随手笔记-PE概述-Object Pascal描述(连载).pdf -------------------------------------------------------------------------------- /win32 api详解/API HOOK-全局键盘钩子消息实战.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/win32 api详解/API HOOK-全局键盘钩子消息实战.pdf -------------------------------------------------------------------------------- /win32 api详解/API HOOK-全局键盘钩子消息实战Ex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/win32 api详解/API HOOK-全局键盘钩子消息实战Ex.pdf -------------------------------------------------------------------------------- /win32 api详解/DLL劫持.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/win32 api详解/DLL劫持.pdf -------------------------------------------------------------------------------- /win32 api详解/win32 api详解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/win32 api详解/win32 api详解.pdf -------------------------------------------------------------------------------- /windows驱动学习/Windows内核学习-连载.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/windows驱动学习/Windows内核学习-连载.pdf -------------------------------------------------------------------------------- /windows驱动学习/windows10内核驱动运行与调试(环境搭建).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/windows驱动学习/windows10内核驱动运行与调试(环境搭建).pdf -------------------------------------------------------------------------------- /汇编语言概述/随手笔记-汇编语言概述-连载.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/汇编语言概述/随手笔记-汇编语言概述-连载.pdf -------------------------------------------------------------------------------- /相关外文资料/intel开发手册/IA-32卷3:系统编程指南.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/相关外文资料/intel开发手册/IA-32卷3:系统编程指南.pdf -------------------------------------------------------------------------------- /相关外文资料/intel开发手册/Intel开发手册3卷全.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/相关外文资料/intel开发手册/Intel开发手册3卷全.pdf -------------------------------------------------------------------------------- /相关外文资料/堆栈/us-16-Yason-Windows-10-Segment-Heap-Internals-wp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/相关外文资料/堆栈/us-16-Yason-Windows-10-Segment-Heap-Internals-wp.pdf -------------------------------------------------------------------------------- /相关外文资料/文件结构/ELF_Format.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/相关外文资料/文件结构/ELF_Format.pdf -------------------------------------------------------------------------------- /相关外文资料/文件结构/coff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/相关外文资料/文件结构/coff.pdf -------------------------------------------------------------------------------- /自制的小软件/PE查询器/MyPE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/自制的小软件/PE查询器/MyPE.exe -------------------------------------------------------------------------------- /自制的小软件/dll注入/远线程注入工具.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/自制的小软件/dll注入/远线程注入工具.exe -------------------------------------------------------------------------------- /调试小记/ASPack-2.x脱壳小记.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/调试小记/ASPack-2.x脱壳小记.pdf -------------------------------------------------------------------------------- /调试小记/快速失败.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/调试小记/快速失败.pdf -------------------------------------------------------------------------------- /调试小记/脱壳小记.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/调试小记/脱壳小记.pdf -------------------------------------------------------------------------------- /调试小记/记录一种简单的反调试手段(调试随手笔记).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/调试小记/记录一种简单的反调试手段(调试随手笔记).pdf -------------------------------------------------------------------------------- /软件调试第二版/卷一/软件调试第二版-卷一读书笔记.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/软件调试第二版/卷一/软件调试第二版-卷一读书笔记.pdf -------------------------------------------------------------------------------- /逆向工程核心技术原理/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/.DS_Store -------------------------------------------------------------------------------- /逆向工程核心技术原理/1-PE文件格式详细解析(一).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/1-PE文件格式详细解析(一).md -------------------------------------------------------------------------------- /逆向工程核心技术原理/2-PE文件格式详细解析(二)--IAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/2-PE文件格式详细解析(二)--IAT.md -------------------------------------------------------------------------------- /逆向工程核心技术原理/3-PE文件格式详细解析(三)--EAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/3-PE文件格式详细解析(三)--EAT.md -------------------------------------------------------------------------------- /逆向工程核心技术原理/5-PE文件格式详细解析(五)-- 调试UPX压缩的notepad程序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/5-PE文件格式详细解析(五)-- 调试UPX压缩的notepad程序.md -------------------------------------------------------------------------------- /逆向工程核心技术原理/6-PE文件格式详细解析(六)-- 基址重定位表(Base Relocation Table).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/6-PE文件格式详细解析(六)-- 基址重定位表(Base Relocation Table).md -------------------------------------------------------------------------------- /逆向工程核心技术原理/7-Windows消息钩取.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/7-Windows消息钩取.md -------------------------------------------------------------------------------- /逆向工程核心技术原理/8-DLL注入和卸载.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/8-DLL注入和卸载.md -------------------------------------------------------------------------------- /逆向工程核心技术原理/PE文件格式详细解析(四)-- 运行时压缩及UPX压缩调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/PE文件格式详细解析(四)-- 运行时压缩及UPX压缩调试.md -------------------------------------------------------------------------------- /逆向工程核心技术原理/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenwolf/My-Software-Reverse-Engineering/HEAD/逆向工程核心技术原理/Readme.md --------------------------------------------------------------------------------