Skip to content

Nailing the basic of IPA structure

Published: at 12:00 AM

When I first started security testing iOS apps, I didn’t really care about diving deep into the details of IPA file. I was more focused on finding vulnerabilities and running basic tests. But that changed when a QA engineer asked me during a mobile security training session: “What exactly is inside an IPA app?”.

Maybe this blog post will answer her question and serve as a note for myself.

IPA (iOS App Store Package)

iOS apps are packaged as IPA files, which are ZIP-compressed archives containing the app’s binary, resources, and metadata needed for execution on iOS devices. Similar to Android’s APK, IPA files are specific to Apple’s iOS devices and are used to install apps on iPhones, iPads, and iPods.

IPA Structure

NameDescription
iTunesArtworkA 512x512 pixel PNG image used as app’s icon that shows up on iTunes, and App Store.
iTunesMetadata.plistA property list file that contains developer information like developer name, ID, copyright information, application name etc.
META-INFSubdirectory within the IPA file stores meta-information. Inside, you will find two more files:
- com.apple.FixedZipMetadata.bin
- com.apple.ZipMetadata.plist
WatchKitSupport/WKThe framework simplifies app development for watchOS apps, including managing background tasks, extended runtime sessions, Siri intents, and accessing user information about Apple Watch
PayloadFolder that contains the application data.
Application BinaryThe executable file containing the application’s code. Same name with actual application name. The complete binary analysis is performed on this application binary.
Mobile Provision fileiOS apps are typically installed via the App Store, but for beta testing or ad hoc distribution, a mobile provisioning profile is included to allow installation on specific devices.
Code SignatureCheck the integrity of the app when the application was released. Any kind of editing or deletion will invalidate the signature. Any changes that are made to the .app file require that the whole package be re-signed.
Bundled Resource FilesImages, Videos, Sounds, HTML, Property list files, etc. which are required by the application to be installed on the mobile device.

Payload: A Closer Look

In the Payload folder, we have a .app folder representing the app’s name. Inside, all app data is stored.

For example: Spotify app spotify-app

Reference: