A Windows DLL injection, function interception, and memory manipulation library for .NET.
Ruptura provides a set of libraries that make it easy to inject a managed .NET assembly into arbitrary Windows (and Wine) processes for the purposes of function hooking and memory manipulation.
Ruptura injects a bundled native module into the target process, which then locates the .NET runtime in either framework-dependent or self-contained mode and initializes it, after which a user-specified managed assembly is executed - all without the user writing a single line of native code. Additionally, a library facilitating common function hooking and memory manipulation scenarios is available for use by the injected assembly.
This project offers the following packages:
To install a package, run dotnet add package <name>
.
See the sample programs for examples of what the API can do. The
samples can be run with
dotnet example
.
For more information, please visit the project home page.
You will need the .NET SDK and Visual Studio with C/C++ support installed.
Simply run ./cake
(a Bash script) to
build artifacts. You can also use ./cake pack
if you do not want to build the
documentation (which requires Node.js).
These commands will use the Debug
configuration by default, which is suitable
for development and debugging. Pass -c Release
instead to get an optimized
build.
This project is licensed under the terms found in
LICENSE-0BSD
.