Skip to content

Siemphony is in beta and still being built. What ships today, and what does not.

Siemphony’s repertoire

PowerShell script touching the Outlook Home Page WebView setting

Siemphony@siemphonylowT1137.004unverified
AN0502 offers three log sources, and the first two are already spoken for elsewhere in this corpus. The process-creation leg — outlook.exe as parent, a scripting host as child — is already published as data/detections/T1203's selector, which lists outlook.exe among its parents and mshta.exe/wscript.exe among its children; every event that leg would match already matches T1203, with nothing on the event to say which technique produced it. This rule previously took the image-load leg instead, matching outlook.exe loading vbscript.dll/jscript.dll/scrobj.dll — but data/detections/T1137.003 was reworked onto the near-identical selector (outlook.exe loading vbscript.dll and scrobj.dll, same category) to catch a malicious custom Form, and a review confirmed every event satisfying either selector satisfies the other: jscript.dll was the only field that differed, so the two technique-tagged rules fired on the same Sysmon EID7 record with no way to tell a malicious folder Home Page from a malicious Form. That leg is dropped here in favour of AN0502's third, previously-unused source: the PowerShell operational log. A Home Page is not set through a registry edit alone — Ruler-style tooling and the equivalent manual/administrative cleanup both go through Outlook's COM object model, setting a folder's `WebViewURL` and `WebViewOn` properties, which is what actually populates the `Outlook\WebView\<Folder>` registry value the brief has no log source for. Matching PowerShell script block text that references either the COM properties or the registry path they write catches the mechanism itself, on a source neither the T1137.003 nor the T1203 rule reads. Of MITRE's knobs: `ChildProcessName` belongs to the process-creation leg dropped above, so it has no expression here; `TargetFolder` and `HTMLPayloadLocation` may appear as literal substrings inside a matching script block but are not separately addressable fields on a 4104 event, so neither is asserted as its own gate; `TimeWindow` and `FormViewBehavior` describe timing and rendering state that a script-block log does not carry. The event records that a script touched the Home Page mechanism, not what it changed it to, and it cannot distinguish an adversary's Ruler module from a defender's or IT team's own remediation script doing the identical property writes to remove one — both are "execution of a PowerShell script to enumerate or remove malicious Home Page folder config" in MITRE's own words for this source, and this analytic cannot separate the two directions. Prerequisite: EventID 4104 requires PowerShell Script Block Logging, which is off in a default install and in the MS/CIS baselines; an empty result means the telemetry is most likely missing, not that the technique is absent. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0177, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full description

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.

Event| where (EventID == 4104 and (ScriptBlockText contains "WebViewURL" or ScriptBlockText contains "WebViewOn" or ScriptBlockText contains "Outlook\\WebView"))

Splunk · SPL

Run this as a search.

index=* (EventID="4104" AND (ScriptBlockText="*WebViewURL*" OR ScriptBlockText="*WebViewOn*" OR ScriptBlockText="*Outlook\\WebView*"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (event.code == 4104 AND (TO_LOWER(powershell.file.script_block_text) LIKE "*webviewurl*" OR TO_LOWER(powershell.file.script_block_text) LIKE "*webviewon*" OR TO_LOWER(powershell.file.script_block_text) LIKE "*outlook\\\\webview*"))

Wazuh · XML rule

Deploy to your manager — this is a rule, not a search.

<group name="sigma,windows,">  <!-- Rule ids must be unique on your manager; 100000+ is the user range. -->  <rule id="100000" level="5">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="EventID" type="pcre2">(?i)^4104$</field>    <field name="ScriptBlockText" type="pcre2">(?i)(WebViewURL|WebViewOn|Outlook\\WebView)</field>    <description>PowerShell script touching the Outlook Home Page WebView setting</description>    <mitre>      <id>T1137.004</id>    </mitre>  </rule></group>

Verdicts · reactions · comments

Community

Verdicts from engineers who actually deployed it, and the conversation around it.

Log in to react
Not yet reported on

Nobody has run this in a real environment and said what happened.

Verdicts from engineers who deployed it

0 cast

No 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.