PE Injection: Executing PEs inside Remote Processes
Code Injection
Last updated
Was this helpful?
Code Injection
Last updated
Was this helpful?
This is a quick lab of a simplified way of injecting an entire portable executabe (PE) into another running process. Note that in order to inject more complex PEs, additional DLLs in the target process may need to be loaded and Import Address Table fixed and for this, refer to my other lab .
In this lab, I wrote a simple C++ executable that consists of two functions:
main
- this is the function that is responsible for injection of the PE image of the running process into a remote/target process
InjectionEntryPoint
- this is the function that will get executed by the target process (notepad in my case) once it gets injected.
This function will pop a MessageBox
with a name of the module the code is currently running from. If injection is successful, it should spit out a path of notepad.exe.
High level process of the technique as used in this lab:
Parse the currently running image's PE headers and get its sizeOfImage
Allocate a block of memory (size of PE image retrieved in step 1) in the currently running process. Let's call it localImage
Copy the image of the current process into the newly allocated local memory
Allocate new memory block (size of PE image retrieved in step 1) in a remote process - the target process we want to inject the currently running PE into. Let's call it targetImage
Calculate delta between memory addresses localImage
and targetImage
Patch the PE you're injecting or, in other words, relocate it/rebase it to targetImage
. For more information about image relocations, see my other lab
Write the patched PE into targetImage
memory location
Create remote thread and point it to InjectionEntryPoint
function inside the PE
Getting sizeOfImage
of the current process (local process) that will be injecting itself into a target process and allocating a new memory block in the local process:
In my case, the new memory block got allocated at address 0x000001813acc0000
. Let's copy the current process's image in there:
Let's allocate a new block of memory in the target process. In my case it got allocated at 0x000001bfc0c20000
:
Calculate the delta between 0x000001bfc0c20000 and 0x000001813acc0000 and apply image base relocations. Once that's done, we can move over our rebased PE from 0x000001813acc0000 to 0x000001bfc0c20000 in the remote process using WriteProcessMemory
. Below shows that our imaged has now been moved to the remote process:
Finally, we can create a remote thread and point it to the InjectionEntryPoint
function inside the remote process:
Below shows how we've injected the PE into the notepad (PID 11068) and executed its function InjectionEntryPoint
which printed out the name of a module the code was running from, proving that the PE injection was succesful: