frida-il2cpp-bridge icon indicating copy to clipboard operation
frida-il2cpp-bridge copied to clipboard

A Frida module to dump, trace or hijack any Il2Cpp application at runtime, without needing the global-metadata.dat file.

Results 26 frida-il2cpp-bridge issues
Sort by recently updated
recently updated
newest added

I'm trying to schedule a function on the main thread but looks like there's no way to do it. This is what i've tried: ```javascript Il2Cpp.perform(() => { // This...

bug
help wanted

Reference: [Perfare/Il2CppDumper](https://github.com/Perfare/Il2CppDumper/blob/master/Il2CppDumper/Outputs/DummyAssemblyExporter.cs)

enhancement

There is a class , e.g. ```csharp namespace TProcess.Archive { public class LoadFile { public LoadFile(){} public bool isLoaded; public long size; public Dictionary menu; public string hash; public byte[]...

Why I'm getting always access violation error when trying to add values to generic list or what I'm doing wrong? ``` let list = Il2Cpp.corlib.class("System.Collections.Generic.List`1") let int = Il2Cpp.corlib.class("System.Int32") let...

I have `System.Action` argument which extends `System.Delegate`, can i get handle of callback to replace it implementation? Note: I need to get method handle from argument, replacing all callbacks will...

When a method definition does not include an null value (example: `MyClass getMyClass();`) but something went wrong (or null check was stripped by il2cpp compiler) it can return `NULL` so...

Device: Emulator LDPlayer Android 7.1 64-bit Game doesnt have exports, and i made minet: ``` import "frida-il2cpp-bridge"; globalThis.IL2CPP_MODULE_NAME = "libil2cpp.so"; Reflect.defineProperty(Il2Cpp, "module", {value: Process.findModuleByAddress(DebugSymbol.fromName("il2cpp_init").address)}); declare global { let IL2CPP_EXPORTS: Record...

Device: Emulator LDPlayer Android 7.1 64-bit Command frida -H 127.0.0.1 -l dist/agent.js --realm=emulated so, i can get libil2cpp.so address, but i cant dump game Il2Cpp.dump() dont working i didnt tested...

When using frida-il2cpp-bridge, I encounter issues with code completion, intellisense, and errors related to missing member properties (Property does not exist on type {}). **Problem Overview** Upon integrating frida-il2cpp-bridge into...

hello im running a code from snippet but why i got this error npm run spawn com.mobile.legends > [email protected] spawn > run() { frida -U -f "$1" -l _.js --runtime=v8;...

bug