Skip to content

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

Siemphony’s repertoire

Hypervisor CLI or cmdlet used to list virtual machines

Siemphony@siemphonylowT1673unverified
Matches the enumeration half of AN0574: a virtualisation management binary invoked with a listing verb, and the PowerShell route through the Get-VM family. The tool list is the analytic's own naming, populated here with the Workstation CLI (vmrun.exe), the VirtualBox CLI (VBoxManage.exe) and the Windows PowerShell hosts; the verb gate is what separates discovery from ordinary VM lifecycle work, because VBoxManage.exe startvm and vmrun.exe start are the same binaries doing something that is not this technique. The Get-VM selection deliberately matches the prefix rather than the exact cmdlet, so Get-VMHost, Get-VMSwitch and Get-VMGuest are caught alongside it; all of them are the same enumeration step against a different object. Three gaps to be plain about. The brief maps Security EventID 4688 onto Sigma's process_creation category, which is Sysmon-shaped, so this rule is written in that vocabulary (Image, CommandLine) — a Sysmon EventID 1 feed matches directly, while a 4688 feed needs NewProcessName mapped onto Image first, plus Audit Process Creation enabled and the separate "Include command line in process creation events" policy, without which CommandLine is empty and no selection in this rule can ever match. A cmdlet typed into an already running console, or called from inside a .ps1, never appears on any process command line at all; that route is only visible on PowerShell EventID 4104 with Script Block Logging enabled, which is a different logsource and cannot be joined here. Finally, ESXi is where this technique matters most and the esxcli and vim-cmd invocations MITRE cites run on the hypervisor itself, which emits no Windows process creation events — this rule does not reach them. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0199, 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 "\\vmrun.exe" or FolderPath endswith "\\VBoxManage.exe") and (ProcessCommandLine contains " list" or ProcessCommandLine contains " showvminfo")) or ((FolderPath endswith "\\powershell.exe" or FolderPath endswith "\\pwsh.exe") and ProcessCommandLine contains "Get-VM"))

Splunk · SPL

Run this as a search.

index=* (((Image="*\\vmrun.exe" OR Image="*\\VBoxManage.exe") AND (CommandLine="* list*" OR CommandLine="* showvminfo*")) OR ((Image="*\\powershell.exe" OR Image="*\\pwsh.exe") AND CommandLine="*Get-VM*"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (((TO_LOWER(process.executable) LIKE "*\\\\vmrun.exe" OR TO_LOWER(process.executable) LIKE "*\\\\vboxmanage.exe") AND (TO_LOWER(process.command_line) LIKE "* list*" OR TO_LOWER(process.command_line) LIKE "* showvminfo*")) OR ((TO_LOWER(process.executable) LIKE "*\\\\powershell.exe" OR TO_LOWER(process.executable) LIKE "*\\\\pwsh.exe") AND TO_LOWER(process.command_line) LIKE "*get-vm*"))

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. -->  <!-- 2 rules: the Sigma condition ORs across different fields,       which one rule cannot express. Any one matching is a hit. -->  <rule id="100000" level="5">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="Image" type="pcre2">(?i)(\\vmrun\.exe$|\\VBoxManage\.exe$)</field>    <field name="CommandLine" type="pcre2">(?i)( list| showvminfo)</field>    <description>Hypervisor CLI or cmdlet used to list virtual machines (1/2)</description>    <mitre>      <id>T1673</id>    </mitre>  </rule>   <rule id="100001" level="5">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="Image" type="pcre2">(?i)(\\powershell\.exe$|\\pwsh\.exe$)</field>    <field name="CommandLine" type="pcre2">(?i)Get-VM</field>    <description>Hypervisor CLI or cmdlet used to list virtual machines (2/2)</description>    <mitre>      <id>T1673</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.