只记录自己遇到过的问题
我现在的完美逆向手机不需要砸壳,哈哈哈哈哈!
1、dumpdecrypted
$ git clone https://github.com/stefanesser/dumpdecrypted.git
$ cd 到dumpdecrypted文件夹下
$ make
(如果make失败,找相同iOS系统的dylib文件也可以用)
DYLD_INSERT_LIBRARIES= dumpdecrypted.dylib ....失败
失败原因:
dyld:could not load inserted library 'XXX.dylib' because image not found
解决:
需要签名一下,在终端下签名
1. 列出可签名证书
security find-identity -v -p codesigning
2. 为dumpecrypted.dylib签名
codesign --force --verify --verbose --sign "iPhone Developer: xxx xxxx (xxxxxxxxxx)" dumpdecrypted.dylib
最后重新砸壳一下就可以了
2、Clutch
解密后的地址下的ipa用scp复制出来,iFunBox拉出来会缺东西
地址里面的部分符号例如‘(’需要转义,转义符‘\’
网友评论