升级
44%
       UID2098
       金钱62
       交易币0
       贡献0
|
10金钱
写法是这样的,按了没反应:
[ENABLE]
aobscanmodule(INJECT,dnf.exe,45 0F B6 CC 4D 8B C6 48 8B D5 49 8B CF) // should be unique
alloc(newmem,$1000,INJECT)
label(code)
label(return)
newmem:
code:
mov rdx,#-1
mov rcx,r15
jmp return
INJECT+7:
jmp newmem
nop
return:
registersymbol(INJECT)
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
INJECT+7:
db 48 8B D5 49 8B CF
unregistersymbol(INJECT)
dealloc(newmem)
|
|