T1543.004 - Launch Daemon#

Adversaries may create or modify Launch Daemons to execute malicious payloads as part of persistence. Launch Daemons are plist files used to interact with Launchd, the service management framework used by macOS. Launch Daemons require elevated privileges to install, are executed for every user on a system prior to login, and run in the background without the need for user interaction. During the macOS initialization startup, the launchd process loads the parameters for launch-on-demand system-level daemons from plist files found in /System/Library/LaunchDaemons/ and /Library/LaunchDaemons/. Required Launch Daemons parameters include a Label to identify the task, Program to provide a path to the executable, and RunAtLoad to specify when the task is run. Launch Daemons are often used to provide access to shared resources, updates to software, or conduct automation tasks.(Citation: AppleDocs Launch Agent Daemons)(Citation: Methods of Mac Malware Persistence)(Citation: launchd Keywords for plists)

Adversaries may install a Launch Daemon configured to execute at startup by using the RunAtLoad parameter set to true and the Program parameter set to the malicious executable path. The daemon name may be disguised by using a name from a related operating system or benign software (i.e. Masquerading). When the Launch Daemon is executed, the program inherits administrative permissions.(Citation: WireLurker)(Citation: OSX Malware Detection)

Additionally, system configuration changes (such as the installation of third party package managing software) may cause folders such as usr/local/bin to become globally writeable. So, it is possible for poor configurations to allow an adversary to modify executables referenced by current Launch Daemon’s plist files.(Citation: LaunchDaemon Hijacking)(Citation: sentinelone macos persist Jun 2019)

Atomic Tests#

Atomic Test #1 - Launch Daemon#

Utilize LaunchDaemon to launch Hello World

Supported Platforms: macos

Elevation Required (e.g. root or admin)

Dependencies: Run with bash!#

Description: The shared library must exist on disk at specified location (#{path_malicious_plist})#
Check Prereq Commands:#
if [ -f $PathToAtomicsFolder/T1543.004/src/atomicredteam_T1543_004.plist ]; then exit 0; else exit 1; fi;
Get Prereq Commands:#
echo "The plist file doesn't exist. Check the path and try again."; exit 1;
Invoke-AtomicTest T1543.004 -TestNumbers 1 -GetPreReqs

Attack Commands: Run with bash#

sudo cp $PathToAtomicsFolder/T1543.004/src/atomicredteam_T1543_004.plist /Library/LaunchDaemons/com.atomicredteam.plist
sudo launchctl load -w /Library/LaunchDaemons/com.atomicredteam.plist
Invoke-AtomicTest T1543.004 -TestNumbers 1

Cleanup:#

sudo launchctl unload /Library/LaunchDaemons/com.atomicredteam.plist
sudo rm /Library/LaunchDaemons/com.atomicredteam.plist
sudo rm /tmp/T1543_004_atomicredteam.txt
Invoke-AtomicTest T1543.004 -TestNumbers 1 -Cleanup

Detection#

Monitor for new files added to the /Library/LaunchDaemons/ folder. The System LaunchDaemons are protected by SIP.

Some legitimate LaunchDaemons point to unsigned code that could be exploited. For Launch Daemons with the RunAtLoad parameter set to true, ensure the Program parameter points to signed code or executables are in alignment with enterprise policy. Some parameters are interchangeable with others, such as Program and ProgramArguments parameters but one must be present.(Citation: launchd Keywords for plists)