Search found 2 matches

by Patrick
Wed Mar 09, 2005 10:40 am
Forum: madRemote
Topic: Question on CopyFunction()
Replies: 3
Views: 16096

Solved it with the standart NT API functions. The problem is I normally code in FASM/MASM32. Looks like the VS2003 __asm support is just shit, it wasnt a CopyFunction() problem. Could it be that CopyFunction() is writting a lot of overhead into the targets memory or does your AllocEx function alloca...
by Patrick
Tue Mar 08, 2005 1:09 pm
Forum: madRemote
Topic: Question on CopyFunction()
Replies: 3
Views: 16096

Question on CopyFunction()

I copy a function with code like this in it: __asm { push 0 push dword ptr [0x654321] mov eax,0x123456 call eax } Works perfect with normal DLL injection, but if i call the function with CopyFunction() & CreateRemoteThreadEx the app crash. Is there anything i can do to make this work? I would bu...