How to class-dump iPad apps?

后端 未结 3 1454
隐瞒了意图╮
隐瞒了意图╮ 2021-02-02 02:53

I am trying to run class-dump an iPad app to explore its architecture. I extracted the .ipa file using The Unarchiver and from inside the Payload folder, I ran class-dump on the

3条回答
  •  执笔经年
    2021-02-02 03:38

    The issue here is that the binary you obtained has been signed and encrypted to be used on the App Store. In order to class dump or disassemble it you will need to obtain an unencrypted binary. The easiest way to get this is to use GDB to dump the executable when it's running (since the iPhone decrypts the binary to run it).

    Of course, this will require a jailbroken device.

提交回复
热议问题