Suspicious DNS Lookup for Microsoft Defender Definition Updates
Description
Identifies a successful DNS resolution for definitionupdates.microsoft.com from a non-service user context where the requesting process is unsigned or untrusted, or is a common living-off-the-land binary (rundll32.exe, regsvr32.exe). This matches a behavioral prerequisite described in public research on BlueHammer-style attacks that chain Defender update workflows with Volume Shadow Copy and other Windows features to escalate privileges. Legitimate Defender and Windows Update components are typically trusted and run in protected contexts; this combination is higher risk and warrants review.
Query · eql
dns where event.action == "lookup_result" and
dns.question.name == "definitionupdates.microsoft.com" and
not user.id in ("S-1-5-18", "S-1-5-19", "S-1-5-20") and
(
process.code_signature.exists == false or
process.code_signature.trusted == false or
process.name : ("rundll32.exe", "regsvr32.exe")
)