Swift&Objective-C

Reveal-分析任意App视图结构的利器(Reveal Loa

2016-07-10  本文已影响2292人  郭秀才

0x00 安装与破解

V1.6.3安装文件与破解文件

http://pan.baidu.com/s/1i4ZENrf

0x01 集成Xcode项目方法

0x02 lldb集成方法,不需要修改xcode工程

expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2) : ((void*)0)

expr (void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];

如果运行正常,会输出:INFO:Reveal Server Start

每运行都需要输入别名,有点麻烦哦,可以设置一个别名来替代:

touch ~/.lldbinit
open ~/.lldbinit

command alias reveal_load expr (Class)NSClassFromString(@"IBARevealLoader") == nil ? (void *)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2) : ((void*)0)

command alias reveal_start expr (void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];

后续可以直接使用别名:
reveal_load
reveal_start

0x03 越狱机器上分析其他APP

Reveal的真正用途绝不是用来查看自己App的视图结构,在越狱机器上,利用Reveal可以分析任意App的视图结构,这对于逆向和学习优秀App的设计有很大的帮助。

前置条件
方法一 需上传dylib和plist文件到iPhone
步骤1 越狱iPhone上安装 OpenSSH
步骤2 ssh登录iPhone
ssh root@IP 
默认密码:alpine 
退出:exit
步骤3 准备上传文件到iPhone
{
    Filter = {
        Bundles = ("com.microsoft.officelens");
    };
}
步骤4 上传文件到iPhone
scp Desktop/libReveal.dylib root@192.168.x.x:/Library/MobileSubstrate/DynamicLibraries

scp Desktop/libReveal.plist root@192.168.x.x:/Library/MobileSubstrate/DynamicLibraries
步骤5 重启iPhone
reboot
(or)
killall SpringBoard
步骤 6 打开Reveal,打开iPhone上指定的App,在Reveal左上方选择App。
视图结构
方法二 无需上传文件到iPhone
步骤1:

Cydia搜索安装插件 Reveal Loader

步骤2:

iPhone设置里配置 Reveal Loader


配置图
步骤3:打开Reveal,左上方选择App,Done!
上一篇下一篇

猜你喜欢

热点阅读