'Find all export function in so using frida
If I using Module.findExportByName("libc.so", "fopen") I can find fopen address in libc.so
How can I find all the function in "libc.so" using frida?
Solution 1:[1]
if you just want to get all exports from the .so module you can use frida+objection with this command:
objection -g YourApplicationName or com.package.name explore
memory list exports libc.so
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | SkyDancer |
