iOS逆向(1):frida-ios-dump 破壳

准备工作:  1. 安装 OpenSSH (iOS10以后可以跳过此步骤)

                  2. 配置 dropbear

iOS端配置: 1.打开cydia添加源: https://build.frida.re

                    2.添加源,安装Frida

mac端配置: 1.安装homebrew

                    2.安装python(Mac自带python,注意默认版本)

                    3.安装wget:brew install wget

                    4.安装usbmuxd

                    5.清理残留: rm ~/get-pip.py

安装 frida for Mac :  1. sudo pip install frida-tools

                                    2.sudo pip install frida

                                    3.假如报以下错误: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

配置frida-ios-dump环境: 1.从Github下载工程:sudo mkdir /opt/dump && cd /opt/dump && sudo git clone https://github.com/AloneMonkey/frida-ios-dump

                                              2.安装依赖:sudo pip install -r /opt/dump/frida-ios-dump/requirements.txt --upgrade

破壳: 1.打开终端 设置端口转发:iproxy 2222 22

          2.command + n 新建终端执行一键砸壳: dump.py whatapp

你可能感兴趣的:(iOS逆向(1):frida-ios-dump 破壳)