foggyspider Newbie cheater
Reputation: 0
Joined: 20 May 2010 Posts: 11
|
Posted: Mon Mar 14, 2016 11:08 am Post subject: Code Injection crash. |
|
|
I'm trying to use the code injection template to modify an instruction, but the application crashes as soon as I execute it.
Even If I make no code changes and inject the default code injection template.
| Code: |
alloc(newmem,2048,"Application.exe"+423D12)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
movss [rdi+04],xmm6
exit:
jmp returnhere
"Application.exe"+423D12:
jmp newmem
returnhere:
|
When I comment out the jump to newmem nothing crashes. I even tried to add a jump in newmem right back to original code but it still doesn't work.
| Code: |
exit:
jmp returnhere
"Application.exe"+423D12:
//jmp newmem
returnhere:
|
|
|