Example Usage
//Get an ICLRMetaHost, an ICLRRuntimeInfo, an ICorDebug and then call ICorDebug.Initialize()
var corDebug = new CorDebug();
var callback = new CorDebugManagedCallback();
//You use event handlers for some, none, or all events
callback.OnAnyEvent += (s, e) =>
{
Console.WriteLine(e.Kind);
e.Controller.Continue(false);
};
corDebug.SetManagedHandler(callback);
//Use the CreateProcess() extension method that omits lpApplicationName and contains optional parameters
var process = corDebug.CreateProcess("powershell.exe", dwCreationFlags: CreateProcessFlags.CREATE_NEW_CONSOLE);
while (true)
Thread.Sleep(1);
See also
Zygisk-Il2CppDumper
Open Source
Using Zygisk to dump il2cpp data at runtime…
.NET-Deobfuscator
Open Source
Lists of .NET Deobfuscator and Unpacker (Open Source)…
.NET-Obfuscator
Open Source
Lists of .NET Obfuscator (Free, Freemium, Paid and Open Source )…
GH-Offset-Dumper
Free
Scan signatures and netvars. Dumps header files, cheat tables and ReClass files.…
010editor
Free
Templates and scripts for 010 editor…
wxapkg
Free
跨平台微信小程序反编译 GUI 工具,.wxapkg 文件扫描 + 解密 + 解包工具…