Add posh_ps_win32_product_install_msi

This commit is contained in:
frack113
2022-04-24 12:49:00 +02:00
parent 3723b39386
commit eec8437dc2
@@ -0,0 +1,27 @@
title: WMI Win32_Product Install MSI
id: 91109523-17f0-4248-a800-f81d9e7c081d
status: experimental
description: Executes an MSI using the WMI Win32_Product class
author: frack113
date: 2022/04/24
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.007/T1218.007.md
logsource:
product: windows
category: ps_script
definition: Script block logging must be enabled
detection:
selection:
ScriptBlockText|contains|all:
- 'Invoke-CimMethod '
- '-ClassName '
- 'Win32_Product '
- '-MethodName '
- '.msi'
condition: selection
falsepositives:
- Unknown
level: medium
tags:
- attack.defense_evasion
- attack.t1218.007