How can i get IL2CPP Method from method memory virtual address? #563
-
Hi, currently i try to make stacktrace & print method info by method virtual address |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I do something similar here: frida-il2cpp-bridge/src/tracer.ts Lines 350 to 363 in a28fa2e What you could do is iterating over all the assemblies, images and classes and collect all the methods. Then, build an array and sort it by virtual address. Then, use binary search to approximately get the method. However, there's definitely some metadata in the shared library. I recall seeing something interesting in |
Beta Was this translation helpful? Give feedback.
I do something similar here:
frida-il2cpp-bridge/src/tracer.ts
Lines 350 to 363 in a28fa2e
What …