一条命令完成砸壳

背景

最早的砸壳工具是stefanesser写的dumpdecrypted,通过手动注入然后启动应用程序在内存进行dump解密后的内存实现砸壳,这种砸壳只能砸主App可执行文件。

对于应用程序里面存在framework的情况可以使用conradev的dumpdecrypted,通过_dyld_register_func_for_add_image注册回调对每个模块进行dump解密。

但是这种还是需要拷贝dumpdecrypted.dylib,然后找路径什么的,还是挺麻烦的。所以笔者干脆放到MonkeyDev模板变成一个tweak的形式dumpdecrypted,这样填写目标bundle id然后看日志把文件拷贝出来就可以了。

但是还是很麻烦,需要拷贝文件自己还原ipa,然后有了KJCracks的Clutch通过posix_spawnp创建进程然后dump直接生成ipa包在设备,可以说是很方便了。这个是工具在使用的时候大部分应用会出报错,此外生成的包还需要自己拷贝。

一键dump

人都是想偷懒的,于是便有了本文将要介绍的frida-ios-dump,该工具基于frida提供的强大功能通过注入js实现内存dump然后通过python自动拷贝到电脑生成ipa文件,通过以下方式配置完成之后真的就是一条命令砸壳。

环境配置

首先上面也说了该工具基于frida,所以首先要在手机和mac电脑上面安装frida,安装方式参数官网的文档:https://www.frida.re/docs/home/

如果mac端报如下错:

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

然后将越狱设备通过USB连上电脑进行端口映射:

iproxy 2222 22

到此环境就配置好了,接下来就可以一键砸壳了! (另当前python基于2.x的语法,先切换到python 2.x的环境

一键砸壳

最简单的方式直接使用./dump + 应用显示的名字即可,如下:

➜  frida-ios-dump ./dump.py 微信
open target app......
Waiting for the application to open......
start dump target app......
start dump /var/containers/Bundle/Application/6665AA28-68CC-4845-8610-7010E96061C6/WeChat.app/WeChat
WeChat                                        100%   68MB  11.4MB/s   00:05
start dump /private/var/containers/Bundle/Application/6665AA28-68CC-4845-8610-7010E96061C6/WeChat.app/Frameworks/WCDB.framework/WCDB
WCDB                                          100% 2555KB  11.0MB/s   00:00
start dump /private/var/containers/Bundle/Application/6665AA28-68CC-4845-8610-7010E96061C6/WeChat.app/Frameworks/MMCommon.framework/MMCommon
MMCommon                                      100%  979KB  10.6MB/s   00:00
start dump /private/var/containers/Bundle/Application/6665AA28-68CC-4845-8610-7010E96061C6/WeChat.app/Frameworks/MultiMedia.framework/MultiMedia
MultiMedia                                    100% 6801KB  11.1MB/s   00:00
start dump /private/var/containers/Bundle/Application/6665AA28-68CC-4845-8610-7010E96061C6/WeChat.app/Frameworks/mars.framework/mars
mars                                          100% 7462KB  11.1MB/s   00:00
AppIcon60x60@2x.png                           100% 2253   230.9KB/s   00:00
AppIcon60x60@3x.png                           100% 4334   834.8KB/s   00:00
AppIcon76x76@2x~ipad.png                      100% 2659   620.6KB/s   00:00
AppIcon76x76~ipad.png                         100% 1523   358.0KB/s   00:00
AppIcon83.5x83.5@2x~ipad.png                  100% 2725   568.9KB/s   00:00
Assets.car                                    100%   10MB  11.1MB/s   00:00
.......
AppIntentVocabulary.plist                     100%  197    52.9KB/s   00:00
AppIntentVocabulary.plist                     100%  167    43.9KB/s   00:00
AppIntentVocabulary.plist                     100%  187    50.2KB/s   00:00
InfoPlist.strings                             100% 1720   416.4KB/s   00:00
TipsPressTalk@2x.png                          100%   14KB   2.2MB/s   00:00
mm.strings                                    100%  404KB  10.2MB/s   00:00
network_setting.html                          100% 1695   450.4KB/s   00:00
InfoPlist.strings                             100% 1822   454.1KB/s   00:00
mm.strings                                    100%  409KB  10.2MB/s   00:00
network_setting.html                          100% 1819   477.5KB/s   00:00
InfoPlist.strings                             100% 1814   466.8KB/s   00:00
mm.strings                                    100%  409KB  10.3MB/s   00:00
network_setting.html                          100% 1819   404.9KB/s   00:00

如果存在应用名称重复了怎么办呢?没关系首先使用如下命令查看安装的应用的名字和bundle id:

➜  frida-ios-dump git:(master) ✗ ./dump.py -l
  PID  Name                       Identifier
-----  -------------------------  ----------------------------------------
 9661  App Store                  com.apple.AppStore
16977  Moment                     com.kevinholesh.Moment
 1311  Safari                     com.apple.mobilesafari
16586  信息                         com.apple.MobileSMS
 4147  微信                         com.tencent.xin
10048  相机                         com.apple.camera
 7567  设置                         com.apple.Preferences
    -  CrashReporter              crash-reporter
    -  Cydia                      com.saurik.Cydia
    -  通讯录                        com.apple.MobileAddressBook
    -  邮件                         com.apple.mobilemail
    -  音乐                         com.apple.Music
    ......

然后使用如下命令对指定的bundle id应用进行砸壳即可:

➜  frida-ios-dump git:(master) ✗ ./dump.py -b com.tencent.xin

等待自动砸壳传输完成之后便会到当前目录生成一个解密后的ipa文件,这个时候赶紧拖到MonkeyDev开始逆向之旅吧!

23 个赞

沙发,弱弱的问一下非越狱机集成Frida framework后能砸壳吗?

不能。。。

好厉害的样子

1 个赞

已经用了好久了,特别好用,感谢

貌似最新版QQ砸壳失败。。。微信确实能成功

1 个赞

非常 感谢

iOS 11 怎么去越狱啊:sweat_smile:

我用 impactor把 cydia 安装上 就不知道怎么弄了

$ ./dump.py com.youku.YouKu
Start the target app com.youku.YouKu
the connection is closed

执行了,提示“the connection is closed”是什么意思?

先打开应用再运行脚本试试

mac$ ./dump.py QQ
Waiting for USB device...
Start the target app QQ
Dumping QQ to /var/folders/mq/5dz8kdsn699_gx7bn8h0z0hm0000gn/T
start dump /var/containers/Bundle/Application/3708448B-97B0-467F9B273C8C1B242D9F/IPadQQ.app/IPadQQ
0.00B [00:00, ?B/s]chmod:/var/folders/mq/5dz8kdsn699_gx7bn8h0z0hm0000gn/T/Payload/IPadQQ.fid: No such file or directory
Command '('chmod', '655', u'/var/folders/mq/5dz8kdsn699_gx7bn8h0z0hm0000gn/T/Payload/IPadQQ.fid')' returned non-zero exit status 1

0.00B [00:00, ?B/s]chmod: /var/folders/mq/5dz8kdsn699_gx7bn8h0z0hm0000gn/T/Payload/IPadQQ.app: No such file or directory
Command '('chmod', '755', u'/var/folders/mq/5dz8kdsn699_gx7bn8h0z0hm0000gn/T/Payload/IPadQQ.app')' returned non-zero exit status 1

0.00B [00:00, ?B/s]Generating "QQ.ipa"
[Errno 2] No such file or directory: u'/var/folders/mq/5dz8kdsn699_gx7bn8h0z0hm0000gn/T/Payload/IPadQQ.fid'

这种报错咋解决啊,看起来是什么文件权限问题

苹果 电脑没翻墙的话使用下面的命令安装frida

python2 :
sudo pip install frida --ignore-installed six -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

python3:
sudo pip3 install frida --ignore-installed six -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
3 个赞

请问

执行python脚本的时候提示:

  File "./dump.py", line 21, in <module>
    from scp import SCPClient
ImportError: No module named scp

pip install SCPClient 也没用,到底什么原因。

感谢,我试下

1 个赞

Start the target app 美人相机
Dumping 美人相机 to /var/folders/r0/z5kqdrms4j11cd2tslbl40x80000gn/T
start dump /var/containers/Bundle/Application/70636D95-D649-4C98-A2FB-F417434232F5/BeautyCamera.app/BeautyCamera
0.00B [00:00, ?B/s]chmod: /var/folders/r0/z5kqdrms4j11cd2tslbl40x80000gn/T/Payload/BeautyCamera.fid: No such file or directory
Command ‘(‘chmod’, ‘655’, u’/var/folders/r0/z5kqdrms4j11cd2tslbl40x80000gn/T/Payload/BeautyCamera.fid’)’ returned non-zero exit status 1

0.00B [00:00, ?B/s]chmod: /var/folders/r0/z5kqdrms4j11cd2tslbl40x80000gn/T/Payload/BeautyCamera.app: No such file or directory
Command ‘(‘chmod’, ‘755’, u’/var/folders/r0/z5kqdrms4j11cd2tslbl40x80000gn/T/Payload/BeautyCamera.app’)’ returned non-zero exit status 1

0.00B [00:00, ?B/s]Generating “美人相机.ipa”
[Errno 2] No such file or directory: u’/var/folders/r0/z5kqdrms4j11cd2tslbl40x80000gn/T/Payload/BeautyCamera.fid’

请问一下,这个错误是哪里出了问题,求大神解释。

多少的系统,我自己没遇到,群里有人说装个OpenSSH可以解决,你可以试试?

庆哥,这个问题,已经解决了。我安装了OpenSSH就可以了。

确实,GitHub上issue有人回答.ssh和scp都要才行,我好像是scp没搞好也是这个错误,

SCP我到现在也不行,我没弄了。我直接用IFunBox了。