abcdefgnihao
abcdefgnihao
您好作者,有这样一个需求。我需要在我的so加载到内存后去hook他的函数,比如JNI_OnLoad或者Init_array. 但是在这里使用xhook或者Dobby去hook某个函数后,发现没有经过。 ```java loadInternal(....) { LinuxModule module = loadInternal(libraryFile); resolveSymbols(!forceCallInit); //***********插入我的逻辑************** //***********结束我的逻辑************** if (callInitFunction || forceCallInit) {... } } ``` 后来在 main 函数,在 loadLibrary之前,添加了一个 moduleListerner. 但也是发现无法成功hook上。请教下有什么办法可以解决我的问题~
This is the scenario i'm currently facing, an anti-debug featured Apk created multiple thread to detect intruders. I am trying to suspend my process by using Thread.sleep(sec) when certain users...