Files
blue-team-tools/rules-deprecated/windows/proc_creation_win_powershell_service_modification.yml
T

41 lines
1.3 KiB
YAML
Raw Normal View History

2021-07-07 15:43:55 +02:00
title: Stop Or Remove Antivirus Service
id: 6783aa9e-0dc3-49d4-a94a-8b39c5fd700b
2023-03-06 00:39:26 +01:00
status: deprecated
2022-08-22 14:52:41 +01:00
description: |
Detects usage of 'Stop-Service' or 'Remove-Service' powershell cmdlet to disable AV services.
Adversaries may disable security tools to avoid possible detection of their tools and activities by stopping antivirus service
2021-07-07 15:43:55 +02:00
references:
2022-07-11 17:48:40 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md
2022-08-22 14:52:41 +01:00
- https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/
2022-10-28 15:06:36 +02:00
author: frack113
date: 2021/07/07
2023-03-06 00:39:26 +01:00
modified: 2023/03/04
2021-07-07 15:43:55 +02:00
tags:
- attack.defense_evasion
- attack.t1562.001
logsource:
category: process_creation
product: windows
detection:
selection_action:
CommandLine|contains:
- 'Stop-Service '
- 'Remove-Service '
selection_product:
CommandLine|contains:
2022-08-22 14:52:41 +01:00
# Feel free to add more service name
2021-07-07 15:43:55 +02:00
- ' McAfeeDLPAgentService'
- ' Trend Micro Deep Security Manager'
- ' TMBMServer'
- 'Sophos'
- 'Symantec'
condition: all of selection*
2021-07-07 15:43:55 +02:00
fields:
- ComputerName
- User
- CommandLine
- ParentCommandLine
falsepositives:
- Unknown
2022-08-22 14:52:41 +01:00
level: high