作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人知道有关 Hook __usercall
类型函数的信息吗?我成功挂接了 __thiscall
、__stdcall
和 __cdecl
调用,但这对我来说已经足够了。
知道有人为 __usercall
Hook 库或如何通过转换为 __stdcall
或 __cdecl
来 Hook 此类函数吗?
我首先必须 Hook 的函数是:
int __usercall func<eax>(int a<eax>, int b<ecx>, int c, unsigned int d, signed int e);
最佳答案
使用包装器将其转换为__stdcall
。
int __stdcall func_hook_payload(int a, int b, int c, unsigned int d, signed int e);
// Wrapper for
// int __usercall func<eax>(int a<eax>, int b<ecx>, int c, unsigned int d, signed int e);
__declspec(naked) void func_hook()
{__asm{
push ebp
mov ebp, esp
push dword ptr[ebp + 0x0C] // or just push e
push dword ptr[ebp + 0x08] // d
push dword ptr[ebp + 0x04] // c
push ecx // b
push eax // a
call func_hook_payload
leave
ret // note: __usercall is cdecl-like
}}
关于c - 如何 Hook __usercall、__userpurge (__spoils) 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4099026/
有人知道有关 Hook __usercall 类型函数的信息吗?我成功挂接了 __thiscall、__stdcall 和 __cdecl 调用,但这对我来说已经足够了。 知道有人为 __userca
我是一名优秀的程序员,十分优秀!