题目来源: google-ctf-2016

题目描述:Do you have have ill intentions?

 

 

通过这道题学习了objection的用法

首先需要在安卓上运行frida-server

然后打开cmd运行objection -g com.example.hellojni explore

android hooking list activities可以查看注册的所有Activities

android hooking watch class com.example.application.ThisIsTheRealOne可以查看ThisIsTheRealOne类的所有方法调用情况

点击按钮后发现它调用了orThat方法

android hooking watch class_method com.example.application.ThisIsTheRealOne.orThat --dump-args --dump-backtrace --dump-return可以监视orThat方法的参数、调用栈和返回值

这里返回值提示我们"KeepTryingThisIsNotTheActivityYouAreLookingForButHereHaveSomeInternetPoints!"

最终在IsThisTheRealOne中调用的perhapsThis发现了flag

CTF{IDontHaveABadjokeSorry}

相关文章:

  • 2021-10-01
  • 2022-02-27
  • 2022-12-23
  • 2021-08-24
  • 2022-12-23
  • 2021-04-11
  • 2021-10-23
  • 2021-11-17
猜你喜欢
  • 2022-01-09
  • 2021-09-07
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
相关资源
相似解决方案