MacOS Security & Privilege Escalation
Last updated
Last updated
First of all, please note that most of the tricks about privilege escalation affecting Linux/Unix will affect also MacOS machines. So see:
.dmg
: Apple Disk Image files are very frequent for installers.
.kext
: It must follow a specific structure and it's the OS X version of a driver.
.plist
: Also known as property list stores information in XML or binary format.
Can be XML or binary. Binary ones can be read with:
defaults read config.plist
/usr/libexec/PlistBuddy -c print config.plsit
plutil -p config.plist
.app
: Apple applications that follows directory structure.
.dylib
: Dynamic libraries (like Windows DLL files)
.pkg
: Are the same as xar (eXtensible Archive format). The installer command can be use to install the contents of these files.
/Applications: The installed apps should be here. All the users will be able to access them.
/bin: Command line binaries
/cores: If exists, it's used to store core dumps
/dev: Everything is treated as a file so you may see hardware devices stored here.
/etc: Configuration files
/Library: A lot of subdirectories and files related to preferences, caches and logs can be found here. A Library folder exists in root and on each user's directory.
/private: Undocumented but a lot of the mentioned folders are symbolic links to the private directory.
/sbin: Essential system binaries (related to administration)
/System: File fo making OS X run. You should find mostly only Apple specific files here (not third party).
/tmp: Files are deleted after 3 days (it's a soft link to /private/tmp)
/Users: Home directory for users.
/usr: Config and system binaries
/var: Log files
/Volumes: The mounted drives will apear here.
/.vol: Running stat a.txt
you obtain something like 16777223 7545753 -rw-r--r-- 1 username wheel ...
where the first number is the id number of the volume where the file exists and the second one is the inode number. You can access the content of this file through /.vol/ with that information running cat /.vol/16777223/7545753
.DS_Store
: This file is on each directory, it saves the attributes and customisations of the directory.
.Spotlight-V100
: This folder appears on the root directory of every volume on the system.
.metadata_never_index
: If this file is at the root of a volume Spotlight won't index that volume.
<name>.noindex
: Files and folder with this extension won't be indexed by Spotlight.
$HOME/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV
2: Contains information about downloaded files, like the URL from where they were downloaded.
/var/log/system.log
: Main log of OSX systems. com.apple.syslogd.plist is responsible for the execution of syslogging (you can check if it's disabled looking for "com.apple.syslogd" in launchctl list
.
/private/var/log/asl/*.asl
: These are the Apple System Logs which may contain interesting information.
$HOME/Library/Preferences/com.apple.recentitems.plist
: Stores recently accessed files and applications through "Finder".
$HOME/Library/Preferences/com.apple.loginitems.plsit
: Stores items to launch upon system startup
$HOME/Library/Logs/DiskUtility.log
: Log file for thee DiskUtility App (info about drives, including USBs)
/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
: Data about wireless access points.
/private/var/db/launchd.db/com.apple.launchd/overrides.plist
: List of daemons deactivated.
/private/etc/kcpassword
: If autologin is enabled this file will contain the users login password XORed with a key.
Daemon: User reserved for system daemons. The default daemon account names usually start with a "_":
Guest: Account for guests with very strict permissions
state=("automaticTime" "afpGuestAccess" "filesystem" "guestAccount" "smbGuestAccess"); for i in "${state[@]}"; do sysadminctl -"${i}" status; done;
Nobody: Processes are executed with this user when minimal permissions are required
Root
Standard User: The most basic of users. This user needs permissions granted from an admin user when attempting to install software or perform other advanced tasks. They are not able to do it on their own.
Admin User: A user who operates most of the time as a standard user but is also allowed to perform root actions such as install software and other administrative tasks. All users belonging to the admin group are given access to root via the sudoers file.
Root: Root is a user allowed to perform almost any action (there are limitations imposed by protections like System Integrity Protection).
For example root won't be able to place a file inside /System
When the file contains ACLs you will find a "+" when listing the permissions like in:
You can read the ACLs of the file with:
You can find all the files with ACLs with (this is veeery slow):
This is a way to obtain Alternate Data Streams in MacOS machines. You can save content inside an extended attribute called com.apple.ResourceFork inside a file by saving it in file/..namedfork/rsrc.
You can find all the files containing this extended attribute with:
The files /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/System
contains the risk associated to files depending on the file extension.
The possible categories include the following:
LSRiskCategorySafe: Totally safe; Safari will auto-open after download
LSRiskCategoryNeutral: No warning, but not auto-opened
LSRiskCategoryUnsafeExecutable: Triggers a warning “This file is an application...”
LSRiskCategoryMayContainUnsafeExecutable: This is for things like archives that contain an executable. It triggers a warning unless Safari can determine all the contents are safe or neutral.
You can enable/disable these services in "System Preferences" --> Sharing
VNC, known as “Screen Sharing”
SSH, called “Remote Login”
Apple Remote Desktop (ARD), or “Remote Management”
AppleEvent, known as “Remote Apple Event”
Check if any is enabled running:
In this talk Jeremy Brown talks about this protections and a bug that allowed to bypass them.
Gatekeeper is designed to ensure that, by default, only trusted software runs on a user’s Mac. Gatekeeper is used when a user downloads and opens an app, a plug-in or an installer package from outside the App Store. Gatekeeper verifies that the software is signed by an identified developer, is notarised by Apple to be free of known malicious content, and hasn’t been altered. Gatekeeper also requests user approval before opening downloaded software for the first time to make sure the user hasn’t been tricked into running executable code they believed to simply be a data file.
In order for an app to be notarised by Apple, the developer needs to send the app for review. Notarization is not App Review. The Apple notary service is an automated system that scans your software for malicious content, checks for code-signing issues, and returns the results to you quickly. If there are no issues, the notary service generates a ticket for you to staple to your software; the notary service also publishes that ticket online where Gatekeeper can find it.
When the user first installs or runs your software, the presence of a ticket (either online or attached to the executable) tells Gatekeeper that Apple notarized the software. Gatekeeper then places descriptive information in the initial launch dialog indicating that Apple has already checked for malicious content.
Gatekeeper builds upon File Quarantine. Upon download of an application, a particular extended file attribute ("quarantine flag") can be added to the downloaded file. This attribute is added by the application that downloads the file, such as a web browser or email client, but is not usually added by others like common BitTorrent client software. When a user executes a "quarentined" file, Gatekeeper is the one that performs the mentioned actions to allow the execution of the file.
It's possible to check it's status and enable/disable (root required) with:
You can also find if a file has the quarantine extended attribute with:
Check the value of the extended attributes with:
And remove that attribute with:
And find all the quarantined files with:
X-Protect is also part of Gatekeeper. It's Apple’s built in malware scanner. It keeps track of known malware hashes and patterns. You can get information about the latest XProtect update running:
Should malware make its way onto a Mac, macOS also includes technology to remediate infections. The Malware Removal Tool (MRT) is an engine in macOS that remediates infections based on updates automatically delivered from Apple (as part of automatic updates of system data files and security updates). MRT removes malware upon receiving updated information and it continues to check for infections on restart and login. MRT doesn’t automatically reboot the Mac. (From here)
Apple issues the updates for XProtect and MRT automatically based on the latest threat intelligence available. By default, macOS checks for these updates daily. Notarisation updates are distributed using CloudKit sync and are much more frequent.
TCC (Transparency, Consent, and Control) is a mechanism in macOS to limit and control application access to certain features, usually from a privacy perspective. This can include things such as location services, contacts, photos, microphone, camera, accessibility, full disk access, and a bunch more.
From a user’s perspective, they see TCC in action when an application wants access to one of the features protected by TCC. When this happens the user is prompted with a dialog asking them whether they want to allow access or not. This response is then stored in the TCC database.
Check some of the already given permissions to apps in System Preferences --> Security & Privacy --> Privacy --> Files and Folders
.
The TCC database is just a sqlite3 database, which makes the task of investigating it much simpler. There are two different databases, a global one in /Library/Application Support/com.apple.TCC/TCC.db
and a per-user one located in /Users/<username>/Library/Application Support/com.apple.TCC/TCC.db
. The first database is protected from editing with SIP(System Integrity Protection), but you can read them by granting terminal(or your editor) full disk access.
This information was taken from here (read the original source for more information).
Some protected directories:
$HOME/Desktop
$HOME/Documents
$HOME/Downloads
iCloud Drive
...
Unprotected directories:
$HOME (itself)
$HOME/.ssh, $HOME/.aws, etc
/tmp
By default an access via SSH will have "Full Disk Access". In order to disable this you need to have it listed but disabled (removing it from the list won't remove those privileges):
Here you can find examples of how some malwares have been able to bypass this protection:
MacOS Sandbox works with the kernel extension Seatbelt. It makes applications run inside the sandbox need to request access to resources outside of the limited sandbox. This helps to ensure that the application will be accessing only expected resources and if it wants to access anything else it will need to ask for permissions to the user.
Important system services also run inside their own custom sandbox such as the mdnsresponder service. You can view these custom sandbox profiles inside the /usr/share/sandbox
directory. Other sandbox profiles can be checked in https://github.com/s7ephen/OSX-Sandbox--Seatbelt--Profiles.
To start an application with a sandbox config you can use:
Note that the Apple-authored software that runs on Windows doesn’t have additional security precautions, such as application sandboxing.
Bypasses examples:
https://desi-jarvis.medium.com/office365-macos-sandbox-escape-fcce4fa4123c (they are able to write files outside the sandbox whose name starts with ~$
).
This protection was enabled to help keep root level malware from taking over certain parts of the operating system. Although this means applying limitations to the root user many find it to be worthwhile trade off. The most notable of these limitations are that users can no longer create, modify, or delete files inside of the following four directories in general:
/System
/bin
/sbin
/usr
Note that there are exceptions specified by Apple: The file /System/Library/Sandbox/rootless.conf
holds a list of files and directories that cannot be modified. But if the line starts with an asterisk it means that it can be modified as exception.
For example, the config lines:
Means that /usr
cannot be modified except for the 3 allowed folders allowed.
The final exception to these rules is that any installer package signed with the Apple’s certificate can bypass SIP protection, but only Apple’s certificate. Packages signed by standard developers will still be rejected when trying to modify SIP protected directories.
Note that if a file is specified in the previous config file but it doesn't exist, it can be created. This might be used by malware to obtain stealth persistence. For example, imagine that a .plist in /System/Library/LaunchDaemons
appears listed but it doesn't exist. A malware may create one and use it as persistence mechanism.
Also, note how files and directories specified in rootless.conf
have a rootless extended attribute:
SIP handles a number of other limitations as well. Like it doesn't allows for the loading of unsigned kexts. SIP is also responsible for ensuring that no OS X system processes are debugged. This also means that Apple put a stop to dtrace inspecting system processes.
Check if SIP is enabled with:
If you want to disable it, you need to put the computer in recovery mode (start it pressing command+R) and execute: csrutil disable
You can also maintain it enable but without debugging protections doing:
For more information about SIP read the following response: https://apple.stackexchange.com/questions/193368/what-is-the-rootless-feature-in-el-capitan-really
When checking some malware sample you should always check the signature of the binary as the developer that signed it may be already related with malware.
Check for suspicious applications installed and privileges over the.installed resources:
An ASEP is a location on the system that could lead to the execution of a binary without user interaction. The main ones used in OS X take the form of plists.
launchd
is the first process executed by OX S kernel at startup and the last one to finish at shut down. It should always have the PID 1. This process will read and execute the configurations indicated in the ASEP plists in:
/Library/LaunchAgents
: Per-user agents installed by the admin
/Library/LaunchDaemons
: System-wide daemons installed by the admin
/System/Library/LaunchAgents
: Per-user agents provided by Apple.
/System/Library/LaunchDaemons
: System-wide daemons provided by Apple.
When a user logs in the plists located in /Users/$USER/Library/LaunchAgents
and /Users/$USER/Library/LaunchDemons
are started with the logged users permissions.
The main difference between agents and daemons is that agents are loaded when the user logs in and the daemons are loaded at system startup (as there are services like ssh that needs to be executed before any user access the system). Also agents may use GUI while daemons need to run in the background.
There are cases where an agent needs to be executed before the user logins, these are called PreLoginAgents. For example, this is useful to provide assistive technology at login. They can be found also in /Library/LaunchAgents
(see here an example).
New Daemons or Agents config files will be loaded after next reboot or using launchctl load <target.plist>
It's also possible to load .plist files without that extension with launchctl -F <file>
(however those plist files won't be automatically loaded after reboot).
It's also possible to unload with launchctl unload <target.plist>
(the process pointed by it will be terminated),
To ensure that there isn't anything (like an override) preventing an Agent or Daemon from running run: sudo launchctl load -w /System/Library/LaunchDaemos/com.apple.smdb.plist
List all the agents and daemons loaded by the current user:
List the cron jobs of the current user with:
You can also see all the cron jobs of the users in /usr/lib/cron/tabs/
and /var/at/tabs/
(needs root).
In MacOS several folders executing scripts with certain frequency can be found in:
There you can find the regular cron jobs, the at jobs (not very used) and the periodic jobs (mainly used for cleaning temporary files). The daily periodic jobs can be executed for example with: periodic daily
.
In order to install a KEXT as a startup item, it needs to be installed in one of the following locations:
/System/Library/Extensions
KEXT files built into the OS X operating system.
/Library/Extensions
KEXT files installed by 3rd party software
You can list currently loaded kext files with:
For more information about kernel extensions check this section.
In System Preferences -> Users & Groups -> Login Items you can find items to be executed when the user logs in. It it's possible to list them, add and remove from the command line:
These items are stored in the file /Users/<username>/Library/Application Support/com.apple.backgroundtaskmanagementagent
“At tasks” are used to schedule tasks at specific times. These tasks differ from cron in that they are one time tasks that get removed after executing. However, they will survive a system restart so they can’t be ruled out as a potential threat.
By default they are disabled but the root user can enable them with:
This will create a file at 13:37:
If AT tasks aren't enabled the created tasks won't be executed.
They are deprecated but can be used to execute commands when a user logs in.
This setting is stored in /Users/$USER/Library/Preferences/com.apple.loginwindow.plist
To delete it:
In the previous example we have created and deleted a LoginHook, it's also possible to create a LogoutHook.
The root user one is stored in /private/var/root/Library/Preferences/com.apple.loginwindow.plist
Apple introduced a logging mechanism called emond. It appears it was never fully developed, and development may have been abandoned by Apple for other mechanisms, but it remains available.
This little-known service may not be much use to a Mac admin, but to a threat actor one very good reason would be to use it as a persistence mechanism that most macOS admins probably wouldn't know to look for. Detecting malicious use of emond shouldn't be difficult, as the System LaunchDaemon for the service looks for scripts to run in only one place:
As this isn't used much, anything in that folder should be suspicious
This is deprecated, so nothing should be found in the following directories.
A StartupItem is a directory that gets placed in one of these two folders. /Library/StartupItems/
or /System/Library/StartupItems/
After placing a new directory in one of these two locations, two more items need to be placed inside that directory. These two items are a rc script and a plist that holds a few settings. This plist must be called “StartupParameters.plist”.
This isn't working in modern MacOS versions
It's also possible to place here commands that will be executed at startup. Example os regular rc.common script: