Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new technique with a service #5098

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions rules/linux/auditd/lnx_auditd_pers_systemd_reload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ status: test
description: Detects a reload or a start of a service.
references:
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1543.002/T1543.002.md
author: Jakob Weinzettl, oscd.community
author: Jakob Weinzettl, oscd.community, CheraghiMilad
date: 2019-09-23
modified: 2021-11-27
modified: 2024-08-12
tags:
- attack.persistence
- attack.t1543.002
Expand All @@ -16,12 +16,16 @@ logsource:
detection:
selection:
type: 'EXECVE'
a0|contains: 'systemctl'
a0|contains:
- 'systemctl'
- 'service'
a1|contains:
- 'daemon-reload'
- 'reload'
- 'start'
- 'restart'
condition: selection
falsepositives:
- Installation of legitimate service.
- Legitimate reconfiguration of service.
- Command line contains daemon-reload.
level: low
Loading