how do i use Il2Cpp.dump(); when IL2CPP_DOMAIN_GET_ASSEMBLIES is obfuscated? #604
Unanswered
DoctorFLEXoChan
asked this question in
Q&A
Replies: 1 comment
-
Here you go: declare global {
let IL2CPP_EXPORTS: Record<string, () => NativePointer>;
}
IL2CPP_EXPORTS = {
il2cpp_domain_get_assemblies: () => /* your logic */,
};
Il2Cpp.perform(() => {
// ...
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in the gameassembly.dll IL2CPP_DOMAIN_GET_ASSEMBLIES is obfuscated i have a sig that works to get IL2CPP_DOMAIN_GET_ASSEMBLIES but idk how to use it instead of the dafult way this uses to get this to dump the game
Beta Was this translation helpful? Give feedback.
All reactions