All Projects → aidnzz → Dll-Injector

aidnzz / Dll-Injector

Licence: other
Dll injector is a simple to use command line tool which uses CreateRemoteThread and VirtualAllocEx to launch the DLL in the target process.

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

Dll-Injector

A simple dll injector which uses VirtualAllocEx and CreateRemoteThread to launch dll in target process. Dll Injector is a simple to use command line tool which efficiently injects dll's into almost any program:

  ============
  Dll Injector
  ============

  Usage:
    Dllinject.exe [DLL path] [Process name]
    Dllinject.exe [DLL path]

To use the simple Injector class:

#include "injector.h"
#include <iostream> // For input / output and exceptions

int main()
{
  try 
  {
    Injector injector;
    
    injector.attach(processName);
    injector.inject(dllPath);
  }
  catch(const std::runtime_error& e) // To catch any exceptions
  {
    std::cerr << e.what() << '\n';
    return 1;
  }
  
  return 0;
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].