1、image list-o- f
偏移前基地址从IDA看,ASLR偏移从LLDB看,两者相加偏移后基地址。
2、breakpoint
b function
br s –a address
br s –a 'ASLROffset+address'
要在汇编指令上下断点,就要知道它的偏移后的基地址!
3、register write
用于给指定的寄存器赋值
(lldb) register write r0 1
4、
如何启动LLDB:
5、git clone
git clone git://github.com/stefanesser/dumpdecrypted/
6、ssh scp
ssh user@iOSIP 远程登录
--
文件本地拷贝到iOS
scp /path/to/localFile user@iOSIP:/path/to/remoteFile
snakeninnysiMac:~ snakeninny$ scp ~/1.png root@192.168.1.6:/var/tmp/
--
iOS 拷贝到本地
scp user@iOSIP:/path/to/remoteFile /path/to/localFile
snakeninnysiMac:~ snakeninny$ scp root@192.168.1.6:/var/log/syslog ~/iOSlog
--
修改ssh密码
FunMaker-5:~ root# passwd root Changing password for root.
New password:
Retype new password: FunMaker-5:~ root# passwd mobile Changing password for mobile. New password:
Retype new password:
7、打开LLDB
lifedeMBP:~ life$ ssh root@192.168.2.205
root@192.168.2.205's password:
Yuanlingde-iPhone:~ root# debugserver *:1234 -a "SpringBoard"
----------
lifedeMBP:~ life$ /Users/life/KOALAC/Xcode.app/Contents/Developer/usr/bin/lldb
(lldb) process connect connect://192.168.2.205:1234
8、基地址
hopper:
-[WCRedEnvelopesRedEnvelopesDetailViewController watchMyRedEnvelopesList]:
00d3f200 push {r4, r5, r6, r7, lr} hopper
lldb: image list -o -f
0x000ee000 /private/var/mobile/Containers/Bundle/Application/D6107755-C5CA-44CE-A0A9-B1A832BB4210/WeChat.app/WeChat(0x00000000000f2000)
偏移后基地址: 0xE2D200 = 00d3f200 + 0x000ee000
(lldb) br s -a 0xE2D200 下断点
Breakpoint 3: where = WeChat`__cxa_throw + 7484196, address = 0x00e2d200
触发:
Process 19818 stopped
* thread #1: tid = 0x1a8c75, 0x00e2d200 WeChat`__cxa_throw + 7484196, queue = 'com.apple.main-thread', stop reason = breakpoint 3.1
frame #0: 0x00e2d200 WeChat`__cxa_throw + 7484196
WeChat`__cxa_throw:
-> 0xe2d200 <+7484196>: push {r4, r5, r6, r7, lr}
0xe2d202 <+7484198>: add r7, sp, #0xc
0xe2d204 <+7484200>: sub sp, #0x14
0xe2d206 <+7484202>: mov r4, r0
(lldb) c 继续
ni si
LLDB
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 本来一直想给大家普及一下lldb的使用,因为身边有很多朋友虽然开发了很久,但是还是不会使用调试器,还傻傻的打一个l...
- 现在你已经学到了两个最基本的命令apropos和help.是时候研究一下LLDB是如何把自己附加到进程上的.你会学...
- 本来一直想给大家普及一下lldb的使用,因为身边有很多朋友虽然开发了很久,但是还是不会使用调试器,还傻傻的打一个l...
- LLDB是一个高效的c/c++的调试器,是与LLVM编译器一起使用,提供了丰富的流程控制和数据检测,有效的帮忙我们...