小组里用的砸壳工具主要有两种:
一种是Clutch,使用比较简单的,但是总是会砸失败(原因大佬说过我忘了)
一种是frida,使用稍微复杂一点,不过效果好,当然也有问题,下面主要讨论frida。
使用frida砸壳需要这些东西:(大部分步骤是网上的资料,一些是自己实际使用的时候调整的)
iPhone端:
1. 添加源:https://build.frida.re
2. 按机子架构安装对应的砸壳工具
Mac端:
基于Python2.7,如果不是Python2.7的先切换至2.7(这一点没有留意,我自己的版本是2.7.1)
1. sudo easy_install pip
2. sudo pip install frida
如果遇到错误:Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
试着运行以下命令:
sudo pip install frida --upgrade --ignore-installed six
3. 如果调用frida显示command not found,是因为新版本(12.2.26会出现这种问题)需要安装frida和frida-tools
sudo pip install frida-tools