Skip to content

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

Siemphony’s repertoire

Print processor DLL registered under the spooler Environments key

Siemphony@siemphonymediumT1547.012unverified
Matches a registry value write inside the print spooler's Print Processors subtree, whose full shape is `...\Control\Print\Environments\<architecture>\Print Processors\<name>\Driver`: the adversary-chosen `<name>` is a subkey and `Driver` is the value name holding the DLL that spoolsv.exe loads at boot, so a Sysmon EventID 13 record ends at the value and an `endswith` stopping at `\Print Processors` would never fire. The match is split into two `contains` terms rather than one anchored path because the architecture element varies (`Windows x64`, `Windows NT x86`, `Windows ARM64`) and the control set is either `CurrentControlSet` or `ControlSet001`; the hive prefix is left out for the same reason. Writes whose data is the built-in `winprint.dll` are dropped, which is MITRE's `DLLNamePattern` knob populated here with the one processor every Windows install already has — the exclusion is authored, not sourced. The rest of AN0074 — the payload appearing in the system print-processor directory and then loading into spoolsv.exe on the next spooler restart — is a correlation across three event types inside MITRE's `TimeWindow` knob and is not expressible in Sigma; note also that Sysmon logs registry activity only for paths its configuration allowlists, so confirm this key is included before reading silence as a clean result. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0026, 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.

DeviceRegistryEvents| where ((RegistryKey contains "\\Control\\Print\\Environments\\" and RegistryKey contains "\\Print Processors\\") and not (RegistryValueData endswith "winprint.dll"))

Splunk · SPL

Run this as a search.

index=* ((TargetObject="*\\Control\\Print\\Environments\\*" AND TargetObject="*\\Print Processors\\*") AND NOT (Details="*winprint.dll"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(registry.path) LIKE "*\\\\control\\\\print\\\\environments\\\\*" AND TO_LOWER(registry.path) LIKE "*\\\\print processors\\\\*") AND NOT (TO_LOWER(registry.data.strings) LIKE "*winprint.dll"))

Wazuh · XML rule

Deploy to your manager — this is a rule, not a search.

<group name="sigma,windows,registry_set,">  <!-- 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="TargetObject" type="pcre2">(?i)\\Control\\Print\\Environments\\</field>    <field name="TargetObject" type="pcre2">(?i)\\Print Processors\\</field>    <field name="Details" negate="yes" type="pcre2">(?i)winprint\.dll$</field>    <description>Print processor DLL registered under the spooler Environments key</description>    <mitre>      <id>T1547.012</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.