Currently viewing ATT&CK v7.2 which was live between July 8, 2020 and October 26, 2020. Learn more about the versioning system or see the live site.
Register to stream the next session of ATT&CKcon Power Hour November 12

Create or Modify System Process: Launch Agent

Adversaries may create or modify launch agents to repeatedly execute malicious payloads as part of persistence. Per Apple’s developer documentation, when a user logs in, a per-user launchd process is started which loads the parameters for each launch-on-demand user agent from the property list (plist) files found in /System/Library/LaunchAgents, /Library/LaunchAgents, and $HOME/Library/LaunchAgents [1] [2] [3]. These launch agents have property list files which point to the executables that will be launched [4].

Adversaries may install a new launch agent that can be configured to execute at login by using launchd or launchctl to load a plist into the appropriate directories [5] [6]. The agent name may be disguised by using a name from a related operating system or benign software. Launch Agents are created with user level privileges and are executed with the privileges of the user when they log in [7] [8]. They can be set up to execute when a specific user logs in (in the specific user’s directory structure) or when any user logs in (which requires administrator privileges).

ID: T1543.001
Sub-technique of:  T1543
Tactics: Persistence, Privilege Escalation
Platforms: macOS
Permissions Required: Administrator, User
Data Sources: File monitoring, Process monitoring
Version: 1.0
Created: 17 January 2020
Last Modified: 25 March 2020

Procedure Examples

Name Description
Bundlore

Bundlore can persist via a LaunchAgent.[15]

Calisto

Calisto adds a .plist file to the /Library/LaunchAgents folder to maintain persistence.[12]

CoinTicker

CoinTicker creates user launch agents named .espl.plist and com.apple.[random string].plist to establish persistence.[10]

CrossRAT

CrossRAT creates a Launch Agent on macOS.[13]

Dok

Dok persists via a Launch Agent.[11]

FruitFly

FruitFly persists via a Launch Agent.[11]

Keydnap

Keydnap uses a Launch Agent to persist.[9]

Komplex

The Komplex trojan creates a persistent launch agent called with $HOME/Library/LaunchAgents/com.apple.updates.plist with launchctl load -w ~/Library/LaunchAgents/com.apple.updates.plist.[5]

MacSpy

MacSpy persists via a Launch Agent.[11]

OSX_OCEANLOTUS.D

OSX_OCEANLOTUS.D can create a persistence file in the folder /Library/LaunchAgents.[14]

Proton

Proton persists via Launch Agent.[11]

Mitigations

Mitigation Description
User Account Management

Restrict user's abilities to create Launch Agents with group policy.

Detection

Monitor Launch Agent creation through additional plist files and utilities such as Objective-See’s KnockKnock application. Launch Agents also require files on disk for persistence which can also be monitored via other file monitoring applications.

References