Tutorial [iOS] Using LLDB w/ Watchpoints and a memory editor to find and test offsets! [No IDA]

jkof

Platinian
Mar 28, 2020
36
5
8
23
France
@TheArmKing Great tutorial !
I have a question, for example this ARM64 instruction after you changed the ADD to MOV:
Code:
0x10471e1c0 <+212>: mov x27, #0xffffff
Here, what is '+212' and what does it mean?
Does it mean that the instruction is at function offset + 0x212 ??
C#:
//POC
float SubstractMoney() {
        ....
        ....
        ....
0x212 : MOV X27, #0XFFFF    
}
Thanks for any informations