Hello everyone.
Today I was wondering if its possible to write an asm part stored in aother process.
Example
Program 1:
Program 2:
I'm not sure to be really clear but to be brief I want to do something like WriteProcessMemory and write my asm function
thx in advance, have a nice day
Today I was wondering if its possible to write an asm part stored in aother process.
Example
Program 1:
PHP Code:
Do My stuff
alloc some memory in Program 2
Write MyAsm in Program 2 in allocated memory
_asm
{
push 1
push 2
push 3
...
}
PHP Code:
Do his stuff
thx in advance, have a nice day