-
-
Save hstdt/1004494045eda53f7488479e61fc0ea4 to your computer and use it in GitHub Desktop.
Reveal 越狱机子
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
Filter = { | |
Bundles = ( | |
"com.sina.weibo", | |
"com.tencent.xin", | |
"com.tencent.mqq", | |
"com.apple.AppStore", | |
); | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
参考链接:http://www.jianshu.com/p/d172826fe578 | |
##一、配置openSSH(方便通过mac终端进行管理移动设备) | |
1.越狱机与mac必须连接同一网络 | |
2.在终端命令中输入ssh root@越狱机网络IP,如:ssh [email protected] | |
3.输入您修改过的Root密码,默认:alpine | |
RSA host key for 192.168.2.2 has changed and you have requested strict checking. | |
Host key verification failed. | |
ssh-keygen -R 192.168.2.2 | |
注意:还不行 可直接手动打开/users/parsifal/.ssh/known_hosts 删除该ip所在的行全部信息,再次执行ssh [email protected]即可 | |
##二、拷贝Reveal相关文件至移动设备 | |
1.打开Revela,找到libReveal.dylib、Reveal.framework、libReveal.plist(自己创建的plist文件,包含要查看的app bundle id) | |
2.依次将文件拷贝到设备 | |
1)scp -r /Users/Parsifal/Desktop/Reveal.framework [email protected]:/System/Library/Frameworks | |
2) scp -r /Users/Parsifal/Desktop/libReveal.dylib [email protected]:/Library/MobileSubstrate/DynamicLibraries/ | |
3) scp -r /Users/Parsifal/Desktop/libReveal.plist [email protected]:/Library/MobileSubstrate/DynamicLibraries/ | |
##三、重启手机,打开Mac端Reveal App即可查看。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment