Disclaimer: this project is provided for use within the Apple Security Research Device Program, use for any purpose outside of security research is outside the scope of the project, please don't report issues or request features that are not within that scope.
A daemon that can be installed to an SRD in order to allow for app installation within research cryptexes.
- Security Research Device running iOS 18.0 or later
- Research SDK
Once installed, appregistrard
runs as a daemon and:
- Checks the list of cryptexes that are currently installed
- Checks for a
System/Applications
directory within the cryptex mounts - If found, installs any
.app
bundles found in those cryptexes, so that the apps can be launched from SpringBoard as usual
Additionally, the daemon keeps running in the background and automatically installs any apps found in the System/Applications
directory
within newly-installed cryptexes, so you can easily have small individual cryptexes for different apps, and appregistrard
will
automatically make sure those apps are installed when the cryptexes are mounted.
You can build a cryptex with appregistrard
from the Xcode project by building the "cryptex" scheme.
To install, after building the "cryptex" scheme in Xcode, run the provided install
script, which will find the built root in Xcode's derived data and use srdtool
to install the cryptex.
Alternatively, download the pre-built cryptex root from releases, extract it and provide the path to the extracted root
directory as the first argument to the install
script.
The script configures the appregistrard
cryptex to persist across reboots. Any cryptexes with apps that are also persisted will have their applications installed by appregistrard
upon first unlock.
Apps inside a cryptex can customize the way they're installed by adding a ResearchApp
dictionary to their Info.plist
file.
Currently, appregistrard
supports the following properties in the ResearchApp
dictionary:
Removable
(BOOL): set toYES
to allow the app to be deleted by the user like any normal appWantsContainer
(BOOL): set toYES
for the daemon to create a data container for the app, which also allows app extensions such as widgets to work reliablySystemApp
(BOOL): set toYES
to install as a system app (requires app to have thecom.apple.private.security.system-application
entitlement)
If no ResearchApp
dictionary is specified, Removable
and WantsContainer
are defaulted to YES
, so that the app has a container and can be deleted just like any other app. Set these explicitly to NO
within the ResearchApp
dictionary to disable this behavior.