└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # AndroidELF 2 | search all symbal in ELF file(dlsym can not find) 3 | 4 | dlsym or fake_dlsym can only find dynamic link symbals in SHT_STRTAB 5 | 6 | this util is help you to search other symbal(include dynamic link symbals) in SHT_SYMTAB: 7 | 8 | example: 9 | 10 | "art_quick_to_interpreter_bridge" in libart.so 11 | 12 | # Use 13 | 14 | include files: 15 | 16 | https://github.com/ganyao114/SandHook/blob/master/hooklib/src/main/cpp/utils/elf_util.cpp 17 | --------------------------------------------------------------------------------