vfsfitvnm / frida-il2cpp-bridge

A Frida module to dump, trace or hijack any Il2Cpp application at runtime, without needing the global-metadata.dat file.
https://github.com/vfsfitvnm/frida-il2cpp-bridge/wiki
MIT License
1k stars 200 forks source link

how to print il2cpp string in frida js script? #453

Closed andrewpedia closed 9 months ago

vfsfitvnm commented 9 months ago
const str: Il2Cpp.String = Il2Cpp.string("hello");

console.log(str);

const content: string = str.content;

console.log(content);