启动:

objection -g com.android.settings explore

//查看环境
env

//列举so文件
memory list modules
//列举so文件导出方法
memory list exports libA3AEECD8.so
//将结果写入文件中
memory list exports libA3AEECD8.so --json /root/test.json
//查找可以hook的类
android hooking list classes
//查找带关键词的类
android hooking search classes display
//查看对应类有哪些方法
android hooking list class_methods com.android.settings.DisplaySettings
//生产hook类的代码
android hooking generate simple
d.d.a.g.c
//hook 类的所以方法
android hooking watch class d.d.a.g.c
android hooking watch class_method com.xxx.xxx.setUrl --dump-args --dump-return
// 帮助类
help
android hooking watch class
//禁用sslpinning
android sslpinning disable
//搜索类的实列
android heap search instances com.example.httptest.MainActivity
android heap execute 0x1fc6 getMethod
//搜索activties
android hooking list activities
android intent launch_activity com.example.httptest.MainActivity
//搜索类中的方法

//输出内容保存到文件
objection -g cn.xxx.xxxx  run android hooking list classes > abc.log

//查看/结束任务
jobs list
jobs kill 1qdu22kih04



 

相关文章:

  • 2021-07-08
  • 2022-01-21
  • 2021-04-29
  • 2021-11-16
  • 2021-09-15
  • 2022-02-18
  • 2022-02-22
  • 2021-07-01
猜你喜欢
  • 2021-09-12
  • 2021-09-21
  • 2022-12-23
  • 2021-06-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案