|
|
|
|
|
by Const-me
1796 days ago
|
|
I wonder why people are writing shell codes for that? When I need to inject my code into another process, I write a DLL and only inject LoadLibrary function call. Much more reliable this way: the OS applies relocation table, I have C and C++ runtimes in the injected code, the result is compatible with ASLR, if my DLL has other DLL dependencies the OS will load them first, etc. |
|