How Do I Write ASM To A Process?
I was curious how I would write ASM to a process. Something like
WriteASM(ProcessHandle,Line#,"WhatToWrite")
Just curious if anyone knew.
WriteASM(ProcessHandle,Line#,"WhatToWrite")
Just curious if anyone knew.
_asm
{bla
bla
bla}
_/asm
__asm
{
bla
bla
bla
}



memory();
BYTE abc[ ] = {0x90, 0x90, 0x90, 0x90, 0x90, 0x90};
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) (0xAddie), &abc, sizeof abc, NULL);