user541064
user541064

Reputation: 333

Static analysis tools for closed-source iPhone apps

I am searching for a tool or a combination of tools that can be used for static analysis of closed-source iPhone apps. I am interested in building a control flow graph of these apps. So I am thinking of doing the following:

I came across the following tools, but I am not sure which one of these would be appropriate.

For disassembly:

For static analysis:

My question is: what should be the right combination of the tools from the above two groups so that the output of disassembler can be used as the input to the static analyzer?

Note: One similar question to this is Objective-C static analysis tools — plugin to Xcode?. But the focus there was on a tool that could be used with Xcode and hence would be useful for developers who are writing iPhone apps. I am, however, interested in tools that can be used for analyzing iPhone apps whose source code may not be available.

Upvotes: 1

Views: 1098

Answers (1)

gallileo
gallileo

Reputation: 462

You CANNOT get the real code using this disassembly apps.

Upvotes: 0

Related Questions