~ruther/csharp-dll-injector

e5041312 — Rutherther 2 years ago
Update README.md
f606b743 — František Boháček 4 years ago
chore: add license
9daddd1b — František Boháček 4 years ago
Remove redundant code

refs

master
browse  log 

clone

read-only
https://git.ditigal.xyz/~ruther/csharp-dll-injector
read/write
git@git.ditigal.xyz:~ruther/csharp-dll-injector

You can also use your local clone with git send-email.

I would advise to use https://github.com/Reloaded-Project/Reloaded.Injector/ instead of this.

#Important

Only one function parameter can be passed. x64 processes aren't currently supported. (maybe just the dlls I tried to inject were the problem)

#C-Sharp dll injector

This is a simple C# dll injector. It can inject dll into remote process and execute functions of it.

#Examples

  • /examples/csharp-dllexport

    • Injection of C# library using DllExport
  • /examples/cpp

    • Injection of cpp dynamic library

#Getting started

  • To inject dll use Injector class, the Inject method will return InjectedModule with ExecuteFunction method
InjectedModule injectedModule = Injector.Inject("RemoteProcess", "MyDynamicLibrary.dll");
FunctionResult result = injectedModule.ExecuteFunction("Main");

int integerResult = result.To<int>(); // Primitive types are casted from IntPtr, Reference types are Read from pointer
  • See examples for more
Do not follow this link