Files
blue-team-tools/rules/windows/process_creation/win_pc_msiexec_execute_dll.yml
T
2022-01-16 14:47:56 +01:00

27 lines
922 B
YAML

title: Suspisious Msiexec Execute Arbitrary DLL
id: 6f4191bb-912b-48a8-9ce7-682769541e6d
status: experimental
description: |
Adversaries may abuse msiexec.exe to proxy execution of malicious payloads.
Msiexec.exe is the command-line utility for the Windows Installer and is thus commonly associated with executing installation packages (.msi)
author: frack113
date: 2022/01/16
references:
- https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.007/T1218.007.md
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith: '\msiexec.exe'
CommandLine|contains|all:
- ' /y'
#- '.dll'
condition: selection
falsepositives:
- Legitim script
level: medium
tags:
- attack.defense_evasion
- attack.t1218.007