Skip to content

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

Siemphony’s repertoire

Screensaver registry value pointed at a user-writable path

Siemphony@siemphonymediumT1546.002unverified
Matches a registry SetValue on the SCRNSAVE.EXE value under Control Panel\Desktop where the value data points into a location a user-context process can write, which is the persistence half of AN0441 — that value names the PE Windows launches after the inactivity timeout, so the write itself carries the payload path. The other three values MITRE lists (ScreenSaveActive, ScreenSaverIsSecure, ScreenSaveTimeout) are DWORDs whose Details field holds no path at all, so they cannot support the data gate that makes this rule specific and are left out. The endswith term deliberately covers both the per-user preference key, which Sysmon records as HKU\<SID>\Control Panel\Desktop\SCRNSAVE.EXE rather than under HKCU, and the Software\Policies mirror of the same value; the path list is MITRE's SuspiciousPathRegex knob populated here with user-writable directories, so a screensaver left under System32 or Program Files never matches. Prerequisite: Sysmon EventID 13 is only emitted where the running configuration carries a RegistryEvent SetValue rule covering Control Panel\Desktop, and registry events are the most aggressively trimmed section of the widely used community configs, so an empty result here can mean blind rather than clean. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0154, 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 endswith "\\Control Panel\\Desktop\\SCRNSAVE.EXE" and (RegistryValueData contains "\\Users\\" or RegistryValueData contains "\\AppData\\" or RegistryValueData contains "\\ProgramData\\" or RegistryValueData contains "\\Windows\\Temp\\" or RegistryValueData contains "\\PerfLogs\\" or RegistryValueData contains "\\$Recycle.Bin\\"))

Splunk · SPL

Run this as a search.

index=* (TargetObject="*\\Control Panel\\Desktop\\SCRNSAVE.EXE" AND (Details="*\\Users\\*" OR Details="*\\AppData\\*" OR Details="*\\ProgramData\\*" OR Details="*\\Windows\\Temp\\*" OR Details="*\\PerfLogs\\*" OR Details="*\\$Recycle.Bin\\*"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (TO_LOWER(registry.path) LIKE "*\\\\control panel\\\\desktop\\\\scrnsave.exe" AND (TO_LOWER(registry.data.strings) LIKE "*\\\\users\\\\*" OR TO_LOWER(registry.data.strings) LIKE "*\\\\appdata\\\\*" OR TO_LOWER(registry.data.strings) LIKE "*\\\\programdata\\\\*" OR TO_LOWER(registry.data.strings) LIKE "*\\\\windows\\\\temp\\\\*" OR TO_LOWER(registry.data.strings) LIKE "*\\\\perflogs\\\\*" OR TO_LOWER(registry.data.strings) LIKE "*\\\\$recycle.bin\\\\*"))

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 Panel\\Desktop\\SCRNSAVE\.EXE$</field>    <field name="Details" type="pcre2">(?i)(\\Users\\|\\AppData\\|\\ProgramData\\|\\Windows\\Temp\\|\\PerfLogs\\|\\\$Recycle\.Bin\\)</field>    <description>Screensaver registry value pointed at a user-writable path</description>    <mitre>      <id>T1546.002</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.