Replies: 2 comments 2 replies
-
Hi @rsenet, The test also mentions otool. See here:
Unless the outputs of the tools are fundamentally different we tend to write the examples using just one. If you'd like to see the When performing app analysis, it is important to also analyze the app dependencies (usually in form of libraries or so-called iOS Frameworks) and ensure that they don't contain any vulnerabilities. Even when you don't have the source code, you can still identify some of the app dependencies using tools like objection, MobSF or the `otool -L` command. Objection is the recommended tool, since it provides the most accurate results and it is easy to use. |
Beta Was this translation helpful? Give feedback.
-
In https://mas.owasp.org/MASTG/iOS/0x06i-Testing-Code-Quality-and-Build-Settings/#dynamic-analysis_3, it is specify that we can use list_bundles (from objection) to analyze the app dependencies.
However, it is also easy to do it without objection and localy using otool with the following command:
Beta Was this translation helpful? Give feedback.
All reactions