Service Reload or Start - Linux

Detects the start, reload or restart of a service.

Sigma rule (View on GitHub)

 1title: Service Reload or Start - Linux
 2id: 2625cc59-0634-40d0-821e-cb67382a3dd7
 3status: test
 4description: Detects the start, reload or restart 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, CheraghiMilad
 8date: 2019-09-23
 9modified: 2025-03-03
10tags:
11    - attack.persistence
12    - attack.t1543.002
13logsource:
14    product: linux
15    service: auditd
16detection:
17    selection:
18        type: 'EXECVE'
19        a0|contains:
20            - 'systemctl'
21            - 'service'
22        a1|contains:
23            - 'reload'
24            - 'start'
25    condition: selection
26falsepositives:
27    - Installation of legitimate service.
28    - Legitimate reconfiguration of service.
29    - Command line contains daemon-reload.
30level: low

References

Related rules

to-top