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 rule for impair system power settings #5090

Open
wants to merge 5 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
28 changes: 28 additions & 0 deletions rules/linux/auditd/lnx_auditd_invalidate_system_power_settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
title: Invalidate System Power Settings
id: c172b7b5-f3a1-4af2-90b7-822c63df86cb
status: experimental
description: Adversaries may impair a system's ability to hibernate, reboot, or shut down in order to extend access to infected machines. When a computer enters a dormant state, some or all software and hardware may cease to operate, which can disrupt malicious activity.
author: CheraghiMilad
date: 2024-11-24
references:
- https://attack.mitre.org/techniques/T1653/
tags:
- attack.persistence
- attack.impact
- attack.t1653
logsource:
service: auditd
product: linux
detection:
selection:
type: 'EXECVE'
a0|contains: 'systemctl'
a1|contains: 'mask'
a2|contains:
- 'suspend.target'
- 'hibernate.target'
- 'hybrid-sleep.target'
condition: selection
falsepositives:
- System administrators performing legitimate maintenance
level: high
Loading