My first dll injection
Managed to inject my own DLL into a running process for the first time. Wrote a simple injector in C++ that uses CreateRemoteThread to load the DLL into the target. Once inside, the DLL hooks a few functions and prints debug output to verify it worked. Nothing fancy, but seeing your code execute inside another process is a great feeling.
