Another way to inject a DLL
Filed Under:
There's nothing new. This method is based on method CreateRemoteThread() and CEngine::EngineTrap() in my previous blog entry.
Read this first: OllyDbg plugin: Catcha! v1.1 - Catcha anywhere
Nothing special :D Just write a trap function that call LoadLibrary() function...
Pros:
- We have an advantage that we don't have to call CreateRemoteThread() function.
Cons:
- Must pause target process to hook its EntryPoint :D.
Re: Another way to inject a DLL