ID | Name |
---|---|
T1053.002 | At |
T1053.003 | Cron |
T1053.004 | Launchd |
T1053.005 | Scheduled Task |
T1053.006 | Systemd Timers |
T1053.007 | Container Orchestration Job |
Adversaries may abuse systemd timers to perform task scheduling for initial or recurring execution of malicious code. Systemd timers are unit files with file extension .timer
that control services. Timers can be set to run on a calendar event or after a time span relative to a starting point. They can be used as an alternative to Cron in Linux environments.[1] Systemd timers may be activated remotely via the systemctl
command line utility, which operates over SSH.[2]
Each .timer
file must have a corresponding .service
file with the same name, e.g., example.timer
and example.service
. .service
files are Systemd Service unit files that are managed by the systemd system and service manager.[3] Privileged timers are written to /etc/systemd/system/
and /usr/lib/systemd/system
while user level are written to ~/.config/systemd/user/
.
An adversary may use systemd timers to execute malicious code at system startup or on a scheduled basis for persistence.[4][5][6] Timers installed using privileged paths may be used to maintain root level persistence. Adversaries may also install user level timers to achieve user level persistence.
ID | Mitigation | Description |
---|---|---|
M1026 | Privileged Account Management |
Limit access to the root account and prevent users from creating and/or modifying systemd timer unit files. |
M1022 | Restrict File and Directory Permissions |
Restrict read/write access to systemd |
M1018 | User Account Management |
Limit user access to system utilities such as 'systemctl' or 'systemd-run' to users who have a legitimate need. |
ID | Data Source | Data Component |
---|---|---|
DS0017 | Command | Command Execution |
DS0022 | File | File Modification |
DS0009 | Process | Process Creation |
DS0003 | Scheduled Job | Scheduled Job Creation |
Systemd timer unit files may be detected by auditing file creation and modification events within the /etc/systemd/system
, /usr/lib/systemd/system/
, and ~/.config/systemd/user/
directories, as well as associated symbolic links. Suspicious processes or scripts spawned in this manner will have a parent process of ‘systemd’, a parent process ID of 1, and will usually execute as the ‘root’ user.
Suspicious systemd timers can also be identified by comparing results against a trusted system baseline. Malicious systemd timers may be detected by using the systemctl utility to examine system wide timers: systemctl list-timers –all
. Analyze the contents of corresponding .service
files present on the file system and ensure that they refer to legitimate, expected executables.
Audit the execution and command-line arguments of the 'systemd-run' utility as it may be used to create timers.[1]