Unexpected child process spawned by msiexec.exe
Matches AN0940's Windows leg: `msiexec.exe` — the Windows Installer engine that runs every `.msi` package's custom actions — spawning a scripting host or living-off-the-land binary as a direct child, the shape a malicious postinstall or custom-action script takes once it needs to execute beyond what MSI's own actions provide. This is the only one of the brief's three platform analytics with log sources concrete enough to author against: AN0938's macOS leg and AN0939's Linux leg point at `/usr/sbin/installer` and dpkg/rpm maintainer scripts respectively, but their `sigmaLogsource` objects carry no `eventIds` and the brief gives no field-level detail for `unifiedlog` or `auditd:SYSCALL` beyond prose, so no field is asserted for those platforms here. `ParentImage` is scoped to `msiexec.exe` itself rather than a third-party wrapper like `setup.exe`, because AN0940's `InstallerParent` knob names wrappers as a separate case this rule does not attempt to enumerate. A legitimate MSI custom action calling `cscript.exe` to run a bundled VBScript looks identical here to one calling it to run a dropped payload; only the file's origin path, visible by pivoting into the Sysmon EventID 11 file-creation leg AN0940 also lists, actually separates them. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0330, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full descriptionShow less
The detection
The 4 SIEM queries below are previews produced by Siemphony’s own translator, not pySigma, and none has been executed against a real backend — review before you deploy.
detection.yml
Sentinel · KQL
Run this as a search.
DeviceProcessEvents| where (InitiatingProcessFolderPath endswith "\\msiexec.exe" and (FolderPath endswith "\\powershell.exe" or FolderPath endswith "\\pwsh.exe" or FolderPath endswith "\\cmd.exe" or FolderPath endswith "\\wscript.exe" or FolderPath endswith "\\cscript.exe" or FolderPath endswith "\\mshta.exe" or FolderPath endswith "\\rundll32.exe" or FolderPath endswith "\\regsvr32.exe" or FolderPath endswith "\\certutil.exe"))
Splunk · SPL
Run this as a search.
index=* (ParentImage="*\\msiexec.exe" AND (Image="*\\powershell.exe" OR Image="*\\pwsh.exe" OR Image="*\\cmd.exe" OR Image="*\\wscript.exe" OR Image="*\\cscript.exe" OR Image="*\\mshta.exe" OR Image="*\\rundll32.exe" OR Image="*\\regsvr32.exe" OR Image="*\\certutil.exe"))Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE (TO_LOWER(process.parent.executable) LIKE "*\\\\msiexec.exe" AND (TO_LOWER(process.executable) LIKE "*\\\\powershell.exe" OR TO_LOWER(process.executable) LIKE "*\\\\pwsh.exe" OR TO_LOWER(process.executable) LIKE "*\\\\cmd.exe" OR TO_LOWER(process.executable) LIKE "*\\\\wscript.exe" OR TO_LOWER(process.executable) LIKE "*\\\\cscript.exe" OR TO_LOWER(process.executable) LIKE "*\\\\mshta.exe" OR TO_LOWER(process.executable) LIKE "*\\\\rundll32.exe" OR TO_LOWER(process.executable) LIKE "*\\\\regsvr32.exe" OR TO_LOWER(process.executable) LIKE "*\\\\certutil.exe"))
Wazuh · XML rule
Deploy to your manager — this is a rule, not a search.
<group name="sigma,windows,process_creation,"> <!-- Rule ids must be unique on your manager; 100000+ is the user range. --> <rule id="100000" level="7"> <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. --> <field name="ParentImage" type="pcre2">(?i)\\msiexec\.exe$</field> <field name="Image" type="pcre2">(?i)(\\powershell\.exe$|\\pwsh\.exe$|\\cmd\.exe$|\\wscript\.exe$|\\cscript\.exe$|\\mshta\.exe$|\\rundll32\.exe$|\\regsvr32\.exe$|\\certutil\.exe$)</field> <description>Unexpected child process spawned by msiexec.exe</description> <mitre> <id>T1546.016</id> </mitre> </rule></group>
Verdicts · reactions · comments
Community
Verdicts from engineers who actually deployed it, and the conversation around it.
Nobody has run this in a real environment and said what happened.
Verdicts from engineers who deployed it
0 castNo verdicts reported yet. The first one is worth more than the tenth — say what you ran it against.
Log in to report a verdict.
Log in to join the discussion.
No comments yet. Someone who deploys this will have something to say about it.