Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_schtasks_disable.yml
T

41 lines
1.5 KiB
YAML
Raw Normal View History

2021-12-26 12:09:42 +01:00
title: Disable Important Scheduled Task
id: 9ac94dc8-9042-493c-ba45-3b5e7c86b980
2023-02-07 13:55:14 +01:00
related:
- id: 7595ba94-cf3b-4471-aa03-4f6baa9e5fad # Security-Audting Eventlog
type: similar
2021-12-26 12:09:42 +01:00
status: experimental
2023-01-17 01:00:44 +01:00
description: Detects when adversaries stop services or processes by disabling their respective scheduled tasks in order to conduct data destructive activities
2021-12-26 12:09:42 +01:00
references:
2022-07-11 17:48:40 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1490/T1490.md#atomic-test-8---windows---disable-the-sr-scheduled-task
2022-08-01 16:02:07 +01:00
- https://twitter.com/MichalKoczwara/status/1553634816016498688
2022-08-01 17:37:16 +01:00
- https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/
2023-02-07 13:55:14 +01:00
author: frack113, Nasreddine Bencherchali (Nextron Systems)
2021-12-26 12:09:42 +01:00
date: 2021/12/26
modified: 2022/09/02
2022-10-28 15:06:36 +02:00
tags:
- attack.impact
- attack.t1489
2021-12-26 12:09:42 +01:00
logsource:
category: process_creation
product: windows
detection:
schtasks_exe:
2022-09-01 15:22:26 +02:00
Image|endswith: '\schtasks.exe'
2022-07-11 17:48:40 +01:00
CommandLine|contains|all:
2022-09-01 15:22:26 +02:00
- '/Change'
- '/TN'
- '/disable'
2022-08-01 16:02:07 +01:00
CommandLine|contains:
2022-09-09 15:02:31 +02:00
# Add more important tasks
- '\Windows\SystemRestore\SR'
- '\Windows\Windows Defender\'
- '\Windows\BitLocker'
- '\Windows\WindowsBackup\'
- '\Windows\WindowsUpdate\'
- '\Windows\UpdateOrchestrator\'
- '\Windows\ExploitGuard'
2021-12-26 12:09:42 +01:00
condition: all of schtasks_*
falsepositives:
- Unknown
level: high