JhinSir
JhinSir
I can see that during the command execution, the output includes permissions, dangerous permissions, Activities, Exported Activities, Services, Receivers, Providers, Extracting all hardcoded secrets, and Extracting all insecure connections. But...
Your command is wrong. The correct one is as follows: python APKDeepLens.py -apk D:\project_V\xxxxx.apk -report pdf -o D:\frida_server
> instruction 兄弟,你这个过滤条件是在哪块逻辑加的?是在InstructionRewriter这个抽象类的具体实现类里吗?
> 实现ClassAndMethodFilter接口,两个过滤方法参数是dexlib2的ClassDef和Method,可以依据它们获得方法信息以及遍历指令之类。 我在MyMethodUtil里应该也可以做吧?遍历方法的指令,涉及数组相关操作方法的就加到白名单,这样效果一样吗?
> 实现ClassAndMethodFilter接口,两个过滤方法参数是dexlib2的ClassDef和Method,可以依据它们获得方法信息以及遍历指令之类。 佬,目前哪些指令操作会对性能损耗比较大呢?
我现在就是整个应用都进行了处理,但是只处理应用包名,不会去处理开源的或者三方SDK ,确实发现很多相关的ANR 问题。把oncreate 和数组相关以及线程同步相关的指令过滤掉后,低端机提升很明显,没有那种肉眼可见的卡顿了 ---- 回复的原邮件 ---- | 发件人 | ***@***.***> | | 发送日期 | 2025年04月16日 19:24 | | 收件人 | maoabc/nmmp ***@***.***> | | 抄送人 | JhinSir ***@***.***>, Comment...
Can you explain to me what conditions may trigger this error when the getGateKeepersForApplication method is running? From my current debugging log observation, there is no problem even when accessing...
我验证了一段代码能够百分百复现。 ```java private static void setRootView(Activity activity) { ViewGroup parent = (ViewGroup) activity.findViewById(android.R.id.content); for (int i = 0, count = parent.getChildCount(); i < count; i++) { View childView = parent.getChildAt(i);...
> Thank you @ThexXTURBOXx will try it to see how it goes Did you solve it in the end? I also encountered this problem. Can I replace dx with d8...
> @JhinSir I have also seen your other issue, but this is sadly out of the scope of dex2jar. You can indeed replace dx with d8, but you will need...