You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @dragongt501entrypoint is the name of the function which will be executed after injecting the shared object.
You can use readelf, nm, or objdump to list the symbols and figure out which function you want to call after loading the shared object.
$ readelf -s ./libagent-x86_64.so
Symbol table '.dynsym' contains 6 entries:
Num: Value Size Type Bind Vis Ndx Name
0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND
1: 0000000000000000 0 FUNC GLOBAL DEFAULT UND __cxa_atexit@LIBC (2)
2: 0000000000000000 0 FUNC GLOBAL DEFAULT UND __cxa_finalize@LIBC (2)
3: 0000000000000000 0 FUNC GLOBAL DEFAULT UND __register_atfork@LIBC (2)
4: 0000000000000000 0 FUNC GLOBAL DEFAULT UND puts@LIBC (2)
5: 00000000000016d0 12 FUNC GLOBAL DEFAULT 13 entrypoint
Hi, bro. Can you tell me?
How to find entrypoint Android application?
The text was updated successfully, but these errors were encountered: