SigmaHQ/rules/windows/powershell/powershell_downgrade_attack.yml

29 lines
853 B
YAML
Raw Normal View History

2017-03-22 10:17:03 +00:00
title: PowerShell Downgrade Attack
2019-11-12 22:12:27 +00:00
id: 6331d09b-4785-4c13-980f-f96661356249
2017-03-22 10:17:03 +00:00
status: experimental
description: Detects PowerShell downgrade attack by comparing the host versions with the actually used engine version 2.0
references:
- http://www.leeholmes.com/blog/2017/03/17/detecting-and-preventing-powershell-downgrade-attacks/
tags:
- attack.defense_evasion
- attack.execution
- attack.t1086
2020-06-16 20:46:08 +00:00
- attack.t1059.001
2020-03-20 21:49:07 +00:00
author: Florian Roth (rule), Lee Holmes (idea), Harish Segar (improvements)
date: 2017/03/22
modified: 2020/03/20
2017-03-22 10:17:03 +00:00
logsource:
product: windows
service: powershell-classic
detection:
selection:
EventID: 400
2020-03-20 21:33:14 +00:00
EngineVersion|startswith: '2.'
2017-03-22 10:17:03 +00:00
filter:
2020-03-20 21:33:14 +00:00
HostVersion|startswith: '2.'
2017-03-22 10:17:03 +00:00
condition: selection and not filter
falsepositives:
- Penetration Test
- Unknown
2020-06-16 20:46:08 +00:00
level: medium