Files
blue-team-tools/rules/windows/powershell/powershell_script/posh_ps_tamper_defender.yml
T
2022-03-03 13:53:06 +01:00

35 lines
1.1 KiB
YAML

title: Suspicious Start-Process PassThru
id: 14c71865-6cd3-44ae-adaa-1db923fae5f2
related:
- id: ec19ebab-72dc-40e1-9728-4c0b805d722c
type: derived
status: experimental
description: Attempting to disable scheduled scanning and other parts of windows defender atp.
author: frack113
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1562.001/T1562.001.md
- https://docs.microsoft.com/en-us/powershell/module/defender/set-mppreference?view=windowsserver2022-ps
date: 2022/01/16
logsource:
product: windows
category: ps_script
definition: Script block logging must be enabled
detection:
selection:
ScriptBlockText|contains|all:
- 'Set-MpPreference'
- ' 1'
ScriptBlockText|contains:
- DisableRealtimeMonitoring
- DisableBehaviorMonitoring
- DisableScriptScanning
- DisableBlockAtFirstSeen
- DisableIOAVProtection
condition: selection
falsepositives:
- Legitimate PowerShell scripts
level: high
tags:
- attack.defense_evasion
- attack.t1562.001