ill intentions
Android逆向解题-[ill-intentions]
1 | objection -g com.example.hellojni explore |
看一下有什么Activities:
1 | com.example.application.DefinitelyNotThisOne |
强制开启一个Activity:
1 | android intent launch_activity com.example.application.ThisIsTheRealOne |
里面调用了orThat
方法。
1 | android hooking watch class_method com.example.application.ThisIsTheRealOne.orThat --dump-args --dump-backtrace --dump-return |
点击一下按钮,调用函数:
1 | com.example.hellojni on (google: 13) [usb] # android hooking watch class_method com.example.application.ThisIs |
不是这个Activity,因此换一个。
1 | android intent launch_activity com.example.application.IsThisTheRealOne |
得到:
1 | (agent) Registering job 208845. Type: watch-method for: com.example.application.IsThisTheRealOne.orThat |
参考
ill-intentions - hktk1643 - 博客园 (cnblogs.com)
- 本文作者: Taardis
- 本文链接: https://taardisaa.github.io/2023/09/07/Android逆向解题-ill-intentions/
- 版权声明: 本博客所有文章除特别声明外,均采用 Apache License 2.0 许可协议。转载请注明出处!