可以先查看
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
检查进程是否被杀死