Windows Security tray process executing from an unexpected path
AN0868 is written as a correlation — the Defender tray UI reporting healthy while WinDefend/MsMpEng are actually stopped — but neither log source in its brief can carry "what the UI displayed": System 7036 only records a service's own start/stop transitions, and it fires constantly for normal service management across the whole machine, not just Defender, so a rule built on it cannot tell an adversary's stop from an admin's `net stop`. What the Sysmon process-creation leg can carry is the other half of AN0868's own `FakeUIProcessPatterns` knob: a masquerading binary that borrows the filename of the two processes that actually render the Windows Security tray icon, `SecurityHealthSystray.exe` and `SecurityHealthService.exe`, run from outside the directories Windows ships them in. This rule matches on that name-and-path mismatch and is a masquerading detection, not a health/UI-mismatch detection — it catches a dropped or renamed fake UI executed as a new process, not a legitimate SecurityHealthSystray.exe whose rendering has been hooked or patched in place, which leaves the recorded Image path untouched and is invisible here. AN0869 (Linux) and AN0870 (macOS) are not authored: both briefs describe the same behaviour in prose only — "execution of processes mimicking Apple Security & Privacy GUIs" — with no process name, path, or message pattern given, so any predicate for those platforms would be authored from nothing rather than derived from the brief. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0311, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full descriptionShow less
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 "\\SecurityHealthSystray.exe" or FolderPath endswith "\\SecurityHealthService.exe") and not ((FolderPath startswith "C:\\Windows\\System32\\" or FolderPath startswith "C:\\Windows\\SysWOW64\\")))
Splunk · SPL
Run this as a search.
index=* ((Image="*\\SecurityHealthSystray.exe" OR Image="*\\SecurityHealthService.exe") AND NOT ((Image="C:\\Windows\\System32\\*" OR Image="C:\\Windows\\SysWOW64\\*")))Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE ((TO_LOWER(process.executable) LIKE "*\\\\securityhealthsystray.exe" OR TO_LOWER(process.executable) LIKE "*\\\\securityhealthservice.exe") AND NOT ((TO_LOWER(process.executable) LIKE "c:\\\\windows\\\\system32\\\\*" OR TO_LOWER(process.executable) LIKE "c:\\\\windows\\\\syswow64\\\\*")))
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)(\\SecurityHealthSystray\.exe$|\\SecurityHealthService\.exe$)</field> <field name="Image" negate="yes" type="pcre2">(?i)(^C:\\Windows\\System32\\|^C:\\Windows\\SysWOW64\\)</field> <description>Windows Security tray process executing from an unexpected path</description> <mitre> <id>T1685.003</id> </mitre> </rule></group>
Verdicts · reactions · comments
Community
Verdicts from engineers who actually deployed it, and the conversation around it.
Nobody has run this in a real environment and said what happened.
Verdicts from engineers who deployed it
0 castNo 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.