• Stars
    star
    128
  • Rank 281,044 (Top 6 %)
  • Language
    C
  • Created over 7 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A basic Windows DLL injector in C using CreateRemoteThread and LoadLibrary. Implemented for educational purposes.

Windows DLL Injector

Written by Brandon Arvanaghi (@arvanaghi)

Usage:

This injector assumes you provide a valid DLL path (e.g. C:\Windows\System32\cryptext.dll)

DLL_Injector.exe <Executable_Name> <Path_To_DLL>

A specific example:

DLL_Injector.exe Receiver.exe C:\Windows\System32\cryptext.dll

See my blog post explaining how CreateRemoteThread, VirtualAlloxEx, and LoadLibrary can be used to inject a DLL. Note that this is a noisy way to inject a DLL into a remote process.