Potential Net-NTLM Coercion via Snipping Tool ms-screensketch URI (CVE-2026-33829)
Description
Identifies Snipping Tool started with an ms-screensketch deep link whose filePath parameter points at a remote resource (URL-encoded UNC, literal UNC, or http-based value), consistent with public research on CVE-2026-33829. Affected builds can coerce an authenticated SMB connection and leak Net-NTLM responses for the current user when the handler processes an attacker-controlled filePath. Apply the vendor security update from the April 14, 2026 release train when available.
Query · eql
process where event.action == "start" and
process.name : "SnippingTool.exe" and
(
process.args : (
"ms-screensketch:edit?&filePath=%5C%5C*",
"ms-screensketch:edit?&filePath=http*",
"ms-screensketch:edit?&filePath=\\\\*"
) or
process.command_line : (
"*ms-screensketch*edit*&filePath=%5C%5C*",
"*ms-screensketch*edit*&filePath=http*",
"*ms-screensketch*edit*&filePath=*\\\\*"
)
) and
process.parent.executable != null and not process.parent.executable : ("?:\\Windows\\System32\\svchost.exe", "?:\\Program Files\\WindowsApps\\Microsoft.ScreenSketch_*\\SnippingTool\\SnippingTool.exe")