Skip to content

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

Siemphony’s repertoire

Mail store file opened over an SMB share

Siemphony@siemphonylowT1114unverified
Matches Detailed File Share auditing where the object opened on a share is an Outlook mail-store container (.pst, .ost, .nst) or a Mac Outlook archive (.olm). This is the one leg of AN1309 that no child of this technique owns: the analytic's forwarding-rule and Exchange-cmdlet half is T1114.003's AN1589, its scripted remote-mailbox half is T1114.002's AN0131, and the host-side command-line view of a local mail store is already published in this corpus as T1114.001 — but 5145 appears in no child brief, and it is the only source here that sees a mail archive being read across the network by a named account and source address. The rest of AN1309 correlates rule creation with outbound SMTP inside a TimeWindow, which is a join Sigma cannot express, so only this single-event step is authored. Two limits worth stating: 5145 is written when the server checks what access to grant for the requested object, so it records an attempt and the rights asked for, not a confirmed read of the bytes; and a mail store copied from a local disk or from a mapped drive on the same host never produces one. Requires the Audit Detailed File Share subcategory, which is off in a default install and in the Microsoft and CIS baselines, and which is among the highest-volume audit subcategories in Windows — no matches here means the feed is off far more often than it means nothing happened. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0476, 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.

SecurityEvent| where (EventID == 5145 and (RelativeTargetName endswith ".pst" or RelativeTargetName endswith ".ost" or RelativeTargetName endswith ".nst" or RelativeTargetName endswith ".olm"))

Splunk · SPL

Run this as a search.

index=* (EventID="5145" AND (RelativeTargetName="*.pst" OR RelativeTargetName="*.ost" OR RelativeTargetName="*.nst" OR RelativeTargetName="*.olm"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (event.code == 5145 AND (TO_LOWER(RelativeTargetName) LIKE "*.pst" OR TO_LOWER(RelativeTargetName) LIKE "*.ost" OR TO_LOWER(RelativeTargetName) LIKE "*.nst" OR TO_LOWER(RelativeTargetName) LIKE "*.olm"))

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)^5145$</field>    <field name="RelativeTargetName" type="pcre2">(?i)(\.pst$|\.ost$|\.nst$|\.olm$)</field>    <description>Mail store file opened over an SMB share</description>    <mitre>      <id>T1114</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.