decompile an app binary to get back to source code

后端 未结 2 1360
灰色年华
灰色年华 2020-11-27 22:41

Is there anyway to take a binary - even signed by yourself, and get back to the code? I\'m trying to recover something that I deleted a while ago... but have the binary here

相关标签:
2条回答
  • 2020-11-27 22:52

    You might want to have a look at Hex-Rays decompiler. You need to have IDA Pro debugger to use it.

    0 讨论(0)
  • 2020-11-27 23:08

    You can disassemble a binary and get back assembly source, but there is no way to get back your original Objective-C structured source code.


    EDIT: You may want to give Hopper a try. I didn't try it personally yet but Mike Ash says it's good.

    0 讨论(0)
提交回复
热议问题