Suspicious Windows Server Update Service Child Process
Description
Identifies suspicious child processes spawned from the Windows Server Update Service. This may indicate successful exploitation and execution via CVE-2025-59287.
Query · eql
process where event.type == "start" and
(
(process.parent.name : "w3wp.exe" and process.parent.args : "WsusPool") or
process.parent.name : "WsusService.exe" or
descendant of [process where event.action == "start" and process.name : "WsusService.exe"] or
descendant of [process where event.action == "start" and process.name : "w3wp.exe" and process.args : "WsusPool"]
) and
not process.executable : ("C:\\Windows\\System32\\conhost.exe",
"C:\\Windows\\system32\\WerFault.exe",
"C:\\Windows\\Microsoft.NET\\Framework64\\*\\cvtres.exe",
"C:\\Windows\\Microsoft.NET\\Framework64\\*\\csc.exe",
"C:\\Windows\\Microsoft.NET\\Framework64\\*\\vbc.exe")