Systemd Service Reload or Start

Detects a reload or a start of a service.

Sigma rule (View on GitHub)

 1title: Systemd Service Reload or Start
 2id: 2625cc59-0634-40d0-821e-cb67382a3dd7
 3status: test
 4description: Detects a reload or a start of a service.
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1543.002/T1543.002.md
 7author: Jakob Weinzettl, oscd.community
 8date: 2019/09/23
 9modified: 2021/11/27
10tags:
11    - attack.persistence
12    - attack.t1543.002
13logsource:
14    product: linux
15    service: auditd
16detection:
17    selection:
18        type: 'EXECVE'
19        a0|contains: 'systemctl'
20        a1|contains:
21            - 'daemon-reload'
22            - 'start'
23    condition: selection
24falsepositives:
25    - Installation of legitimate service.
26    - Legitimate reconfiguration of service.
27level: low

References

Related rules

to-top