iOS Universal Links
Last updated
Last updated
Learn & practice AWS Hacking: Learn & practice GCP Hacking:
Universal links offer a seamless redirection experience to users by directly opening content in the app, bypassing the need for Safari redirection. These links are unique and secure, as they cannot be claimed by other apps. This is ensured by hosting a apple-app-site-association
JSON file on the website's root directory, establishing a verifiable link between the website and the app. In cases where the app is not installed, Safari will take over and direct the user to the webpage, maintaining the app's presence.
For penetration testers, the apple-app-site-association
file is of particular interest as it may reveal sensitive paths, potentially including ones related to unreleased features.
Developers enable Universal Links by configuring the Associated Domains in Xcode's Capabilities tab or by inspecting the .entitlements
file. Each domain is prefixed with applinks:
. For example, Telegram's configuration might appear as follows:
For more comprehensive insights, refer to the .
If working with a compiled application, entitlements can be extracted as outlined in .
When a universal link opens an app, an NSUserActivity
object is passed to the app with the URL. Before processing this URL, it's essential to validate and sanitize it to prevent security risks. Here's an example in Swift that demonstrates the process:
URLs should be carefully parsed and validated, especially if they include parameters, to guard against potential spoofing or malformed data. The NSURLComponents
API is useful for this purpose, as demonstrated below:
Through diligent configuration and validation, developers can ensure that universal links enhance user experience while maintaining security and privacy standards.
The apple-app-site-association
file should be retrieved from the server using the domains specified in the entitlements. Ensure the file is accessible via HTTPS directly at https://<domain>/apple-app-site-association
. Tools like the can aid in this process.
The app must implement specific methods to handle universal links correctly. The primary method to look for is . It's crucial that the scheme of URLs handled is HTTP or HTTPS, as others will not be supported.
: Helps simplify the testing and management of your app's Universal Links and AASA file. Simply enter your domain to verify AASA file integrity or use the custom dashboard to easily test link behavior. This tool also helps you determine when Apple will next index your AASA file.
Learn & practice AWS Hacking: Learn & practice GCP Hacking:
Check the !
Join the 💬 or the or follow us on Twitter 🐦 .
Share hacking tricks by submitting PRs to the and github repos.