iOS iphone 7 Manually install the specified version of Frida (old version) Here we take version 15.1.2 as an example

Frida is a code injection framework for all platforms. I won’t go into details here. You can directly read the official tutorial: frida.re

prerequisite

installation steps

  • Search and install the openSSH plugin from Cydia
    insert image description here
  • Download the Frida binaries
  • Copy the binary file to the /var/root directory of the phone through the command line tool scp
scp -P 2222 frida_15.1.2_iphoneos-arm.deb [email protected]:/var/root
  • Or through the UI operation tool iFunBox (newcomers recommend using this tool)
    • You need to install the AFC2 plug-in first, otherwise iFunBox cannot recognize the file system directory
      insert image description here
      insert image description here
  • Install the deb package using dpkg
ssh -p 2222 [email protected]
# 输入密码:alpine
dpkg -i frida_15.1.2_iphoneos-arm.deb 
# 重新打开Cydia 就可以看到已安装Frida 插件了
  • Or use the UI tool Filza file manager plug-in installation is also possible, directly find the /var/root directory, click the deb package to install
    insert image description here

Guess you like

Origin blog.csdn.net/qq_26914291/article/details/129031855