Skip to content

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

Siemphony’s repertoire

Script engine invoked with an SVG file on its command line

Siemphony@siemphonymediumT1027.017unverified
AN1407's real shape is a file-write followed within MITRE's TimeWindow by script-engine execution, network callback or credential collection — a three-stage correlation Sigma cannot express in one event. What survives to a single process_creation record is the deviation this rule matches instead: an SVG, an image format with no legitimate reason to be fed to a script host, on the command line of wscript.exe, cscript.exe, mshta.exe or rundll32.exe. The file-extension gate is MITRE's FileExtensionPattern knob restricted to .svg and .svgz; ParentProcessWhitelist has no expression here because the rule gates on the argument rather than on what launched the engine. A hit shows a script host was pointed at an SVG, not that the SVG carried a script tag or that anything fired afterwards — confirming smuggled content requires opening the file, which this event never does — a genuine, unmodified icon and a smuggled payload are indistinguishable at this level. The gate is also purely lexical, so an SVG fetched from an extensionless route or a query-string path (http://host/asset?id=1), or renamed on disk before invocation, leaves nothing for it to match. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0510, 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 "\\wscript.exe" or FolderPath endswith "\\cscript.exe" or FolderPath endswith "\\mshta.exe" or FolderPath endswith "\\rundll32.exe") and (ProcessCommandLine contains ".svg" or ProcessCommandLine contains ".svgz"))

Splunk · SPL

Run this as a search.

index=* ((Image="*\\wscript.exe" OR Image="*\\cscript.exe" OR Image="*\\mshta.exe" OR Image="*\\rundll32.exe") AND (CommandLine="*.svg*" OR CommandLine="*.svgz*"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(process.executable) LIKE "*\\\\wscript.exe" OR TO_LOWER(process.executable) LIKE "*\\\\cscript.exe" OR TO_LOWER(process.executable) LIKE "*\\\\mshta.exe" OR TO_LOWER(process.executable) LIKE "*\\\\rundll32.exe") AND (TO_LOWER(process.command_line) LIKE "*.svg*" OR TO_LOWER(process.command_line) LIKE "*.svgz*"))

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)(\\wscript\.exe$|\\cscript\.exe$|\\mshta\.exe$|\\rundll32\.exe$)</field>    <field name="CommandLine" type="pcre2">(?i)(\.svg|\.svgz)</field>    <description>Script engine invoked with an SVG file on its command line</description>    <mitre>      <id>T1027.017</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.