Skip to content

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

Siemphony’s repertoire

Executable run from a file name carrying a benign extension before it

Siemphony@siemphonymediumT1036.007unverified
AN1033 describes a file whose visible extension looks benign (.txt, .jpg, .pdf) but whose true, trailing extension is dangerous (.exe, .scr), then executed. This rule authors the execution half of that chain on Sysmon process creation: `selection_benign_marker` requires the image path to contain one of a benign-extension list — MITRE's `benign_extensions` knob, but the brief names only four examples (.txt, .jpg, .doc, .pdf), so the twelve further entries here (.jpeg, .png, .gif, .docx, .xls, .xlsx, .ppt, .pptx, .csv, .zip, .mp3, .mp4) are this pipeline's extrapolation, not MITRE's — immediately followed by another dot, and `selection_dangerous` requires the path to end in one of a dangerous-extension list — MITRE's `dangerous_extensions` knob, populated here with its own four named examples (.exe, .scr, .hta, .lnk) plus seven more this pipeline added (.bat, .cmd, .vbs, .js, .jar, .msi, .ps1). Both conditions together mean the image path contains a benign-looking extension sitting directly in front of the real one — the exact double-extension shape MITRE names, e.g. `Invoice_Q3.pdf.scr`. Two things this rule does not attempt. First, it does not use the Sysmon EventID 11 file-creation leg the analytic also offers: file creation alone cannot distinguish a double-extension drop from any other file write, so the signal only becomes distinct at the point of execution, which is where this rule sits. Second, it does not gate on MITRE's `monitored_paths` knob (Downloads, %TEMP%, Desktop) or the `TimeWindow`/`UserContext` knobs — narrowing to those paths would miss a payload run from anywhere else, and this pipeline has no source for a create-then-execute time correlation, since lib/sigma has no timeframe or aggregation support. The result is a path-agnostic rule that depends entirely on the double-extension shape of the name. Sysmon is not present on a default Windows install and needs a ProcessCreate rule configured; without it the rule returns nothing, which reads as quiet rather than blind. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0366, 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.

DeviceProcessEvents| where ((FolderPath contains ".txt." or FolderPath contains ".jpg." or FolderPath contains ".jpeg." or FolderPath contains ".png." or FolderPath contains ".gif." or FolderPath contains ".pdf." or FolderPath contains ".doc." or FolderPath contains ".docx." or FolderPath contains ".xls." or FolderPath contains ".xlsx." or FolderPath contains ".ppt." or FolderPath contains ".pptx." or FolderPath contains ".csv." or FolderPath contains ".zip." or FolderPath contains ".mp3." or FolderPath contains ".mp4.") and (FolderPath endswith ".exe" or FolderPath endswith ".scr" or FolderPath endswith ".hta" or FolderPath endswith ".lnk" or FolderPath endswith ".bat" or FolderPath endswith ".cmd" or FolderPath endswith ".vbs" or FolderPath endswith ".js" or FolderPath endswith ".jar" or FolderPath endswith ".msi" or FolderPath endswith ".ps1"))

Splunk · SPL

Run this as a search.

index=* ((Image="*.txt.*" OR Image="*.jpg.*" OR Image="*.jpeg.*" OR Image="*.png.*" OR Image="*.gif.*" OR Image="*.pdf.*" OR Image="*.doc.*" OR Image="*.docx.*" OR Image="*.xls.*" OR Image="*.xlsx.*" OR Image="*.ppt.*" OR Image="*.pptx.*" OR Image="*.csv.*" OR Image="*.zip.*" OR Image="*.mp3.*" OR Image="*.mp4.*") AND (Image="*.exe" OR Image="*.scr" OR Image="*.hta" OR Image="*.lnk" OR Image="*.bat" OR Image="*.cmd" OR Image="*.vbs" OR Image="*.js" OR Image="*.jar" OR Image="*.msi" OR Image="*.ps1"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(process.executable) LIKE "*.txt.*" OR TO_LOWER(process.executable) LIKE "*.jpg.*" OR TO_LOWER(process.executable) LIKE "*.jpeg.*" OR TO_LOWER(process.executable) LIKE "*.png.*" OR TO_LOWER(process.executable) LIKE "*.gif.*" OR TO_LOWER(process.executable) LIKE "*.pdf.*" OR TO_LOWER(process.executable) LIKE "*.doc.*" OR TO_LOWER(process.executable) LIKE "*.docx.*" OR TO_LOWER(process.executable) LIKE "*.xls.*" OR TO_LOWER(process.executable) LIKE "*.xlsx.*" OR TO_LOWER(process.executable) LIKE "*.ppt.*" OR TO_LOWER(process.executable) LIKE "*.pptx.*" OR TO_LOWER(process.executable) LIKE "*.csv.*" OR TO_LOWER(process.executable) LIKE "*.zip.*" OR TO_LOWER(process.executable) LIKE "*.mp3.*" OR TO_LOWER(process.executable) LIKE "*.mp4.*") AND (TO_LOWER(process.executable) LIKE "*.exe" OR TO_LOWER(process.executable) LIKE "*.scr" OR TO_LOWER(process.executable) LIKE "*.hta" OR TO_LOWER(process.executable) LIKE "*.lnk" OR TO_LOWER(process.executable) LIKE "*.bat" OR TO_LOWER(process.executable) LIKE "*.cmd" OR TO_LOWER(process.executable) LIKE "*.vbs" OR TO_LOWER(process.executable) LIKE "*.js" OR TO_LOWER(process.executable) LIKE "*.jar" OR TO_LOWER(process.executable) LIKE "*.msi" OR TO_LOWER(process.executable) LIKE "*.ps1"))

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="Image" type="pcre2">(?i)(\.txt\.|\.jpg\.|\.jpeg\.|\.png\.|\.gif\.|\.pdf\.|\.doc\.|\.docx\.|\.xls\.|\.xlsx\.|\.ppt\.|\.pptx\.|\.csv\.|\.zip\.|\.mp3\.|\.mp4\.)</field>    <field name="Image" type="pcre2">(?i)(\.exe$|\.scr$|\.hta$|\.lnk$|\.bat$|\.cmd$|\.vbs$|\.js$|\.jar$|\.msi$|\.ps1$)</field>    <description>Executable run from a file name carrying a benign extension before it</description>    <mitre>      <id>T1036.007</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.