frida对接

可以先查看

adb devices

 

 adb开启root权限

 adb root

将下载的frida-server传入手机 下载链接

 adb push D:\js逆向处理\frida-server /data/local/tmp/

 

adb shell "chmod 755 /data/local/tmp/frida-server"

 

进入调试

 adb shell  "/data/local/tmp/frida-server"

最后面加&是后台调试

 adb shell  "/data/local/tmp/frida-server&"

frida-ps

  frida-ps -U

    列举出来设备上的所有进程
  frida-ps -Ua    (主要)
    列举出来设备上的所有应用程序
  frida-ps -Uai
    列举出来设备上的所有已安装应用程序和对应的名字
  frida-ps -D PID
    连接到指定设备
  frida-ps -D <DEVICE-ID> -a
    检查进程是否被杀死

posted @ 2020-08-02 15:39  酸辣土豆皮  阅读(107)  评论(0编辑  收藏  举报