iOS12逆向,配合Cyrun使用用Cycript

由于Saurik停止维护了Cycript,在现有iOS12的系统环境下无法使用。下面介绍tateu写的一款Cyrun


安装及使用步骤

1.  通过Cydia安装“New Curses”,“readline”和“adv-cmds”

2.  通过SSH /终端:wget http://apt.saurik.com/debs/cycript_0.9.594_iphoneos-arm.deb

3.  wget http://www.tateu.net/repo/files/net.tateu.cycriptlistenertweak_1.0.0_iphoneos-arm.deb

4.  wget http://www.tateu.net/repo/files/net.tateu.cyrun_1.0.5_iphoneos-arm.deb

5.  dpkg -i cycript_0.9.594_iphoneos-arm.deb

6.  dpkg -i net.tateu.cycriptlistenertweak_1.0.0_iphoneos-arm.deb net.tateu.cyrun_1.0.5_iphoneos-arm.deb

7.  使用指令  `cyrun -n App名称 -e` 或 `cyrun -n bundleID -e` 
    例如:`cyrun -n live4iphone -e` 或 `cyrun -b com.tencent.live4iphone -e`

8.  将指令的 -e 改为 -d ,从App中移除(卸载)Cycript,App将被终止并自动重启。
    例如:`cyrun -n live4iphone -d` 或 `cyrun -b com.tencent.live4iphone -d`
iOS12逆向,配合Cyrun使用用Cycript_第1张图片
示例图

PS:如果 wget 指令无效可以复制链接下载deb包,然后使用 scp 指令说iFunBox工具导入deb安装包到手机,然后执行5-6步骤。具体使用请参考[cyrun](https://github.com/tateu/cyrun)

你可能感兴趣的:(iOS12逆向,配合Cyrun使用用Cycript)