Skip to content

Siemphony is in beta and still being built. How a rule earns its badge.

Siemphony’s repertoire

Outlook folder home page or Outlook Today URL set in the registry

Siemphony@siemphonymediumT1137+1unverified
Detects a write to the Outlook registry values that hold a folder home page — the URL Outlook fetches and renders inside its own process whenever the folder is opened after startup, executing whatever script the page carries without any macro setting being involved. This is the registry-side artefact of the Outlook Home Page sub-technique T1137.004, observed here through the parent strategy's analytic AN1116 because AN0502, the analytic under .004 itself, offers only process_creation, image_load and PowerShell log sources and no registry feed at all. It says nothing about the other Office startup mechanisms: T1137.001 covers the Word and Excel template values, T1137.002 the Office test key and T1137.006 the add-in startup folders, none of which touch these keys. MITRE's RegistryPath knob names Outlook Today; the WebView folder URLs and the EnableRoamingFolderHomepages value, which an operator has to set back on to defeat the update that disabled folder home pages, are added here rather than taken from MITRE. The version number between the product name and the Outlook subkey is why nothing left of `\Outlook\` is anchored. The registry is only one of two delivery paths, and the narrower one: Ruler, the tool the technique's own citation names, sets the folder home page as a MAPI property on the mailbox over RPC/HTTP, so the WebView values never appear in HKCU on the victim and this arm sees nothing. Against that path EnableRoamingFolderHomepages is the sole local artefact, and only on a host that took the 2017 update. Sysmon registry monitoring is an explicit allowlist of paths, so confirm the Office subtree is inside the running configuration before reading an empty result as an absence. The level answers to the first false positive rather than to the severity of a true positive — high is appropriate only once an estate has confirmed it carries no legacy folder home pages and has baselined Outlook's own WebView writes away. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0398, 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.

DeviceRegistryEvents| where (RegistryKey contains "\\Outlook\\WebView\\" or RegistryKey contains "\\Outlook\\Today\\UserDefinedUrl" or RegistryKey contains "\\Outlook\\Security\\EnableRoamingFolderHomepages")

Splunk · SPL

Run this as a search.

index=* (TargetObject="*\\Outlook\\WebView\\*" OR TargetObject="*\\Outlook\\Today\\UserDefinedUrl*" OR TargetObject="*\\Outlook\\Security\\EnableRoamingFolderHomepages*")

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (TO_LOWER(registry.path) LIKE "*\\\\outlook\\\\webview\\\\*" OR TO_LOWER(registry.path) LIKE "*\\\\outlook\\\\today\\\\userdefinedurl*" OR TO_LOWER(registry.path) LIKE "*\\\\outlook\\\\security\\\\enableroamingfolderhomepages*")

Wazuh · XML rule

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

<group name="sigma,windows,registry_set,">  <!-- 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="TargetObject" type="pcre2">(?i)(\\Outlook\\WebView\\|\\Outlook\\Today\\UserDefinedUrl|\\Outlook\\Security\\EnableRoamingFolderHomepages)</field>    <description>Outlook folder home page or Outlook Today URL set in the registry</description>    <mitre>      <id>T1137</id>      <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.