{% hint style="success" %}
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.
{% hint style="warning" %}
Note that entitlements starting with com.apple
are not available to third-parties, only Apple can grant them.
{% endhint %}
The entitlement com.apple.rootless.install.heritable
allows to bypass SIP. Check this for more info.
The entitlement com.apple.rootless.install
allows to bypass SIP. Check this for more info.
This entitlement allows to get the task port for any process, except the kernel. Check this for more info.
This entitlement allows other processes with the com.apple.security.cs.debugger
entitlement to get the task port of the process run by the binary with this entitlement and inject code on it. Check this for more info.
Apps with the Debugging Tool Entitlement can call task_for_pid()
to retrieve a valid task port for unsigned and third-party apps with the Get Task Allow
entitlement set to true
. However, even with the debugging tool entitlement, a debugger can’t get the task ports of processes that don’t have the Get Task Allow
entitlement, and that are therefore protected by System Integrity Protection. Check this for more info.
This entitlement allows to load frameworks, plug-ins, or libraries without being either signed by Apple or signed with the same Team ID as the main executable, so an attacker could abuse some arbitrary library load to inject code. Check this for more info.
This entitlement is very similar to com.apple.security.cs.disable-library-validation
but instead of directly disabling library validation, it allows the process to call a csops
system call to disable it.
Check this for more info.
This entitlement allows to use DYLD environment variables that could be used to inject libraries and code. Check this for more info.
According to this blog and this blog, these entitlements allows to modify the TCC database.
These entitlements allows to install software without asking for permissions to the user, which can be helpful for a privilege escalation.
Entitlement needed to ask the kernel to load a kernel extension.
The entitlement com.apple.private.icloud-account-access
it's possible to communicate with com.apple.iCloudHelper
XPC service which will provide iCloud tokens.
iMovie and Garageband had this entitlement.
For more information about the exploit to get icloud tokens from that entitlement check the talk: #OBTS v5.0: "What Happens on your Mac, Stays on Apple's iCloud?!" - Wojciech Regula
TODO: I don't know what this allows to do
TODO: In this report is mentioned that this could be used to update the SSV-protected contents after a reboot. If you know how it send a PR please!
TODO: In this report is mentioned that this could be used to update the SSV-protected contents after a reboot. If you know how it send a PR please!
This entitlement list keychain groups the application has access to:
<key>keychain-access-groups</key>
<array>
<string>ichat</string>
<string>apple</string>
<string>appleaccount</string>
<string>InternetAccounts</string>
<string>IMCore</string>
</array>
Gives Full Disk Access permissions, one of the TCC highest permissions you can have.
Allows the app to send events to other applications that are commonly used for automating tasks. Controlling other apps, it can abuse the permissions granted to these other apps.
Like making them ask the user for its password:
{% code overflow="wrap" %}
osascript -e 'tell app "App Store" to activate' -e 'tell app "App Store" to activate' -e 'tell app "App Store" to display dialog "App Store requires your password to continue." & return & return default answer "" with icon 1 with hidden answer with title "App Store Alert"'
{% endcode %}
Or making them perform arbitrary actions.
Allows, among other permissions, to write the users TCC database.
Allows to change the NFSHomeDirectory
attribute of a user that changes his home folder path and therefore allows to bypass TCC.
Allow to modify files inside apps bundle (inside app.app), which is disallowed by default.
It's possible to check who has this access in System Settings > Privacy & Security > App Management.
The process will be able to abuse the macOS accessibility features, Which means that for example he will be able to press keystrokes. SO he could request access to control an app like Finder and approve the dialog with this permission.
This entitlement allows to create memory that is writable and executable by passing the MAP_JIT
flag to the mmap()
system function. Check this for more info.
This entitlement allows to override or patch C code, use the long-deprecated NSCreateObjectFileImageFromMemory
(which is fundamentally insecure), or use the DVDPlayback framework. Check this for more info.
{% hint style="danger" %} Including this entitlement exposes your app to common vulnerabilities in memory-unsafe code languages. Carefully consider whether your app needs this exception. {% endhint %}
This entitlement allows to modify sections of its own executable files on disk to forcefully exit. Check this for more info.
{% hint style="danger" %} The Disable Executable Memory Protection Entitlement is an extreme entitlement that removes a fundamental security protection from your app, making it possible for an attacker to rewrite your app’s executable code without detection. Prefer narrower entitlements if possible. {% endhint %}
TODO
This entitlement allows to mount a nullfs file system (forbidden by default). Tool: mount_nullfs.
According to this blogpost, this TCC permission usually found in the form:
[Key] com.apple.private.tcc.allow-prompting
[Value]
[Array]
[String] kTCCServiceAll
Allow the process to ask for all the TCC permissions.
{% hint style="success" %}
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.