- 注册时间
- 2010-7-26
- 最后登录
- 2010-7-26
- 在线时间
- 0 小时
编程入门
- 魔鬼币
- 0
|
完美国际 物品使用CALL 用代码注入能调用成功 DLL注入却失败 为什么??
注入器的写法:
mov edx,0x009e1b4c
mov edx,[edx]
add edx,0x1c
mov edx,[edx]
add edx,0x20
mov edx,[edx]
add edx,0x0C44
mov edx,[edx]
add edx,0x0C
mov edx,[edx]
add edx,0
mov edx,[edx]
add edx,0x8
mov edx,[edx]
mov eax,0
mov ecx,[0x09E1B4C]
add ecx,0x20
mov ecx,[ecx]
push 1
push edx
push eax
push 0
add ecx,0x0EC
call 005E01E0
VC++中的写法:
DWORD CALLADDR=0x005E01E0;
_asm
{
mov edx,0x009e1b4c
mov edx,[edx]
add edx,0x1c
mov edx,[edx]
add edx,0x20
mov edx,[edx]
add edx,0x0C44
mov edx,[edx]
add edx,0x0C
mov edx,[edx]
add edx,0
mov edx,[edx]
add edx,0x8
mov edx,[edx]
mov eax,0
mov ecx,[0x09E1B4C]
add ecx,0x20
mov ecx,[ecx]
push 1
push edx
push eax
push 0
add ecx,0x0EC
call CALLADDR
}
各位 大牛 还请说下 |
|