-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
shadowhook_dlsym找不到,而使用系统的dlsym可以找到 #77
Labels
bug
Something isn't working
Comments
void *handle = shadowhook_dlopen("libdl.so");
void *original = shadowhook_dlsym(handle, "android_dlopen_ext"); |
请问一下这个libdl.so是如何确定的?具体原因能够解释一下吗,感谢 |
另外:
Ndx不为UND(0)表示这是一个导出符号,符号对应的机器码在当前ELF中。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ShadowHook Version
1.0.10
Android OS Version
13
Android ABIs
arm64-v8a
Device Manufacturers and Models
小米11,Android 13 ,api 33
Describe the Bug
使用下面方式找不到
void *handle = shadowhook_dlopen("libc.so");
void *original = shadowhook_dlsym(handle, "android_dlopen_ext");
而使用下面系统方式能够找到
void *handle = dlopen("libc.so", RTLD_NOW);
void *original = dlsym(handle, "android_dlopen_ext");
The text was updated successfully, but these errors were encountered: