Debugger value written under an Image File Execution Options key
Matches the registry write that creates the IFEO injection primitive itself — a value named Debugger under an Image File Execution Options subkey — which is the first half of MITRE's AN1186. The gate is on the *value name*, not on the hijacked binary, which is what separates this from the accessibility-binary hijack under T1546.008: that rule fires on the target executable's name and ignores which value was written, this one fires on any target so long as a debugger was attached. Both predicates are tested on TargetObject because a single registry_set record carries the key path and the value name as one string; on a Sysmon EventID 13 feed that is native, and on the Security EventID 4657 feed named in the brief the pipeline must concatenate ObjectName and ObjectValueName or the endswith predicate never matches. 4657 also needs the Audit Registry subcategory enabled *and* a SACL placed on the IFEO key — neither is on in a default install or in the MS and CIS baselines, so an unprepared host returns zero rows for reasons that have nothing to do with adversary activity. The SilentProcessExit MonitorProcess half of the technique writes to a different key and is deliberately out of scope here. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0422, 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.
DeviceRegistryEvents| where (RegistryKey contains "\\Image File Execution Options\\" and RegistryKey endswith "\\Debugger")
Splunk · SPL
Run this as a search.
index=* (TargetObject="*\\Image File Execution Options\\*" AND TargetObject="*\\Debugger")Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE (TO_LOWER(registry.path) LIKE "*\\\\image file execution options\\\\*" AND TO_LOWER(registry.path) LIKE "*\\\\debugger")
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="12"> <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. --> <field name="TargetObject" type="pcre2">(?i)\\Image File Execution Options\\</field> <field name="TargetObject" type="pcre2">(?i)\\Debugger$</field> <description>Debugger value written under an Image File Execution Options key</description> <mitre> <id>T1546.012</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.