Skip to content

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

Siemphony’s repertoire

MMC opening an .msc console staged in a user-writable path

Siemphony@siemphonyhighT1218.014unverified
Matches mmc.exe started with a command line that names an .msc console living under a user-writable or network location — the Users, AppData, Downloads, Desktop, ProgramData and Temp directories plus UNC paths that MITRE spells out in this analytic's SuspiciousMSCPathRegex knob. The Microsoft-supplied consoles are loaded from System32 by name, so a console path rooted in a profile or on a share is the staging step of the proxy-execution chain. All three tests are ANDed and each sits on a single field, which keeps the rule a flat conjunction that every backend can render. The rest of the chain the analytic describes — COM activation of a non-baseline CLSID, an unsigned DLL load into signed mmc.exe, then network activity — spans four log sources joined by a five to ten minute window, none of which Sigma can express, so this rule is the first link only. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0222, 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 endswith "\\mmc.exe" and ProcessCommandLine contains ".msc") and (ProcessCommandLine contains "\\Users\\" or ProcessCommandLine contains "\\AppData\\" or ProcessCommandLine contains "\\Downloads\\" or ProcessCommandLine contains "\\Desktop\\" or ProcessCommandLine contains "\\ProgramData\\" or ProcessCommandLine contains "\\Temp\\" or ProcessCommandLine contains "\\\\"))

Splunk · SPL

Run this as a search.

index=* ((Image="*\\mmc.exe" AND CommandLine="*.msc*") AND (CommandLine="*\\Users\\*" OR CommandLine="*\\AppData\\*" OR CommandLine="*\\Downloads\\*" OR CommandLine="*\\Desktop\\*" OR CommandLine="*\\ProgramData\\*" OR CommandLine="*\\Temp\\*" OR CommandLine="*\\\\*"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(process.executable) LIKE "*\\\\mmc.exe" AND TO_LOWER(process.command_line) LIKE "*.msc*") AND (TO_LOWER(process.command_line) LIKE "*\\\\users\\\\*" OR TO_LOWER(process.command_line) LIKE "*\\\\appdata\\\\*" OR TO_LOWER(process.command_line) LIKE "*\\\\downloads\\\\*" OR TO_LOWER(process.command_line) LIKE "*\\\\desktop\\\\*" OR TO_LOWER(process.command_line) LIKE "*\\\\programdata\\\\*" OR TO_LOWER(process.command_line) LIKE "*\\\\temp\\\\*" OR TO_LOWER(process.command_line) LIKE "*\\\\\\\\*"))

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="12">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="Image" type="pcre2">(?i)\\mmc\.exe$</field>    <field name="CommandLine" type="pcre2">(?i)\.msc</field>    <field name="CommandLine" type="pcre2">(?i)(\\Users\\|\\AppData\\|\\Downloads\\|\\Desktop\\|\\ProgramData\\|\\Temp\\|\\\\)</field>    <description>MMC opening an .msc console staged in a user-writable path</description>    <mitre>      <id>T1218.014</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.