![]() |
|
#5
|
|||
|
|||
|
Injecting a DLL into another process can be done quite easily with the regular Windows API only:
-first allocate memory in the target process with CreateRemoteThread, -then copy some loader code and the arguments using WriteProcessMemory, -then use CreateRemoteThread to start the loader code, which in turn calls LoadLibrary This technique is very generic, and allows to execute any code into any process... This is useful for hooking as well, as it allows to hook only a specific process instead of the whole system.... |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I know what information return this address? | byvs | General Discussion | 5 | 11-20-2015 20:57 |
| Problem with Return Address | ArC | General Discussion | 2 | 08-03-2003 16:13 |