MonkeyDev Xcode13 集成记录
MonkeyDev
MonkeyDev 是可以集成到Xcode方便进行逆向开发的集成工具,大大优化逆向开发流程,并且方便安装。
本文是记录安装过程中遇到的坑,安装的版本是Xcode13.2。
安装方式
安装方法参考作者安装wiki:https://github.com/AloneMonkey/MonkeyDev/wiki/%E5%AE%89%E8%A3%85#%E7%8E%AF%E5%A2%83%E8%A6%81%E6%B1%82
这边选择安装的Xcode为默认的Xcode:
xcode-select -p
然后执行安装命令,就会自动安装了:
sudo /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/AloneMonkey/MonkeyDev/master/bin/md-install)"
遇到问题
-
下载失败: Failed to download https://raw.githubusercontent.com/AloneMonkey/frida-ios-dump/3.x/dump.py to /opt/MonkeyDev/bin/dump.py
DNS
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
我安装是配置了终端代理的,连接github都不会慢,所以问题是DNS 被污染的原因导致。
所以可以通过 https://www.ipaddress.com/ 输入访问不了的https://raw.githubusercontent.com
获取到对应的DNS 后可以配置到 Host文件里面,或者使用switchhosts 方便 host 管理。 -
文件缺失问题 File /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/Specifications/MacOSX Package Types.xcspec not found
应该是新版Xcode文件目录有变动,参考https://github.com/AloneMonkey/MonkeyDev/issues/266
可以使用文件软连接解决:
sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/PrivatePlugIns/IDEOSXSupportCore.ideplugin/Contents/Resources /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/Specifications
集成结果
上面的问题是安装过程遇到的问题,实际上可以在安装命令前提前处理。
安装完后再次打开Xcode,新建Project 然后拉到下面会发现已经有MonkeyDev的创建选项了。
New Project安装完成后打开Xcode 崩溃:
可以参考:https://github.com/AloneMonkey/MonkeyDev/issues/297
/Applications/Xcode.app/Contents/PlugIns/IDEiOSSupportCore.ideplugin/Contents/Resources/Embedded-Device.xcspec
修改上述文件,文本编辑,删除<array>标签内中的起始的两个空<dict>,即<dict/> <dict/>,保存,即可。