首页
社区
课程
招聘
[转帖]Implementing Global Injection and Hooking in Windows
发表于: 2022-4-19 14:04 4458

[转帖]Implementing Global Injection and Hooking in Windows

2022-4-19 14:04
4458

Implementing Global Injection and Hooking in Windows


A couple of weeks ago, Windhawk, the customization marketplace for Windows programs, was released. You can read the announcement for more details and for the motivation behind creating it. In this post, I’ll focus on my journey in implementing the technical aspects of Windhawk. If you prefer reading code to reading text, check out the demo implementation.


Windhawk allows creating mods, which are C++ snippets that are compiled to DLLs and loaded in third party programs to customize them. The technical challenge is to be able to load these DLLs in the context of the required processes. For example, one can create a mod that hooks the MessageBoxW WinAPI function, and define that the mod should apply to all processes.


https://m417z.com/Implementing-Global-Injection-and-Hooking-in-Windows/



[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//