mirror of https://github.com/opa334/TrollStore.git
Improve readme, add note about com.apple.private.security.storage.AppDataContainers
This commit is contained in:
parent
d3305f1660
commit
d244304313
15
README.md
15
README.md
|
@ -64,17 +64,17 @@ iOS 15 on A12+ has banned the following three entitlements related to running un
|
||||||
|
|
||||||
Your app can run unsandboxed using one of the following entitlements:
|
Your app can run unsandboxed using one of the following entitlements:
|
||||||
|
|
||||||
```
|
```xml
|
||||||
<key>com.apple.private.security.container-required</key>
|
<key>com.apple.private.security.container-required</key>
|
||||||
<false/>
|
<false/>
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
```xml
|
||||||
<key>com.apple.private.security.no-container</key>
|
<key>com.apple.private.security.no-container</key>
|
||||||
<true/>
|
<true/>
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
```xml
|
||||||
<key>com.apple.private.security.no-sandbox</key>
|
<key>com.apple.private.security.no-sandbox</key>
|
||||||
<true/>
|
<true/>
|
||||||
```
|
```
|
||||||
|
@ -83,13 +83,20 @@ The third one is recommended if you still want a sandbox container for your appl
|
||||||
|
|
||||||
You might also need the platform-application entitlement in order for these to work properly:
|
You might also need the platform-application entitlement in order for these to work properly:
|
||||||
|
|
||||||
```
|
```xml
|
||||||
<key>platform-application</key>
|
<key>platform-application</key>
|
||||||
<true/>
|
<true/>
|
||||||
```
|
```
|
||||||
|
|
||||||
Please note that the platform-application entitlement causes side effects such as some parts of the sandbox becoming tighter, so you may need additional private entitlements to circumvent that. (For example afterwards you need an exception entitlement for every single IOKit user client class you want to access).
|
Please note that the platform-application entitlement causes side effects such as some parts of the sandbox becoming tighter, so you may need additional private entitlements to circumvent that. (For example afterwards you need an exception entitlement for every single IOKit user client class you want to access).
|
||||||
|
|
||||||
|
In order for an app with `com.apple.private.security.no-sandbox` and `platform-application` to be able to access it's own data container, you might need the additional entitlement:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<key>com.apple.private.security.storage.AppDataContainers</key>
|
||||||
|
<true/>
|
||||||
|
```
|
||||||
|
|
||||||
### Root Helpers
|
### Root Helpers
|
||||||
|
|
||||||
When your app is not sandboxed, you can spawn other binaries using posix_spawn, you can also spawn binaries as root with the following entitlement:
|
When your app is not sandboxed, you can spawn other binaries using posix_spawn, you can also spawn binaries as root with the following entitlement:
|
||||||
|
|
Loading…
Reference in New Issue