Files
blue-team-tools/rules/windows/powershell/powershell_downgrade_attack.yml
T

29 lines
853 B
YAML
Raw Normal View History

2017-03-22 11:17:03 +01:00
title: PowerShell Downgrade Attack
2019-11-12 23:12:27 +01:00
id: 6331d09b-4785-4c13-980f-f96661356249
2017-03-22 11:17:03 +01: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 14:46:08 -06:00
- attack.t1059.001
2020-03-20 22:49:07 +01:00
author: Florian Roth (rule), Lee Holmes (idea), Harish Segar (improvements)
date: 2017/03/22
modified: 2020/03/20
2017-03-22 11:17:03 +01:00
logsource:
product: windows
service: powershell-classic
detection:
selection:
EventID: 400
2020-03-20 22:33:14 +01:00
EngineVersion|startswith: '2.'
2017-03-22 11:17:03 +01:00
filter:
2020-03-20 22:33:14 +01:00
HostVersion|startswith: '2.'
2017-03-22 11:17:03 +01:00
condition: selection and not filter
falsepositives:
- Penetration Test
- Unknown
2020-06-16 14:46:08 -06:00
level: medium