iOS12越狱

固件下载(ipsw)

iOS12.4越狱

Pwn20wnd 大神正式发布 iOS12.4 越狱工具,并在短时间内连发了三个版本,分别为 Unc0ver v3.5.0、v3.5.1、v3.5.2。该工具仅支持 A7-A11 处理器,而不支持 A12 处理器,据说苹果把 iOS12.3 修复的漏洞又带到了 iOS 12.4。

GitHub地址:https://github.com/pwn20wndstuff/Undecimus/releases

Cydia联网

打开 Cydia 后出现“Host Unreachable”无法联网。
请在爱思助手中下载安装乐网后开启“全局拦截”,请注意当前在 AppStore 内下载的版本无法解决这个问题,请选择通过爱思服务器安装。
正常连接网络后,安装插件“Netflix Cydia 联网修正”也可以修正该问题,以此替代乐网的全局拦截功能。

通过ssh连接iOS设备

在Cydia中搜索安装OpenSSH

ssh [email protected]
# 密码: alpine

# 免密登录
cp /Users/zhangdasen/.ssh/id_rsa.pub ~/authorized_keys
scp ~/authorized_keys [email protected]:/var/root/.ssh

# 配置ssh禁止密码登录 vim 需要在Cydia中安装 ```Vi IMproved```
vim /etc/ssh/sshd_config
# 下面3个注释打开并编辑如下
AuthorizedKeysFile   .ssh/authorized_keys   //公钥公钥认证文件
PubkeyAuthentication yes   //可以使用公钥登录
PasswordAuthentication no  //不允许使用密码登录

Reveal2界面调试工具

iOS 10 以下在Cydia中搜索安装 Reveal2Loader

# 拷贝本地Reveal中的RevealServer.framework到手机上
scp -r /Users/shibasenhashira/Desktop/RevealServer.framework [email protected]:/Library/Frameworks
# 重启 SpringBoard
killall SpringBoard

iOS10以上# Reveal2Loader

https://www.lingjye.com/2019/06/12/Reveal/
https://xiaozhuanlan.com/topic/5820613794

你可能感兴趣的:(iOS12越狱)