← Back to SOC feed Coverage →

Identify Microsoft Defender Antivirus detection related to EUROPIUM

kql MEDIUM Azure-Sentinel
AlertEvidence
huntingmicrosoftofficial
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Azure-Sentinel →
Retrieved: 2026-05-05T03:15:55Z · Confidence: medium

Hunt Hypothesis

The hypothesis is that the detection of Microsoft Defender Antivirus activity related to EUROPIUM indicates potential adversarial activity targeting Azure environments. SOC teams should proactively hunt for this behavior to identify and mitigate early-stage compromises by the EUROPIUM actor.

KQL Query

let europium_sigs = dynamic(["BatRunGoXml", "WprJooblash", "Win32/Eagle!MSR", "Win32/Debitom.A"]);  
AlertEvidence 
| where ThreatFamily in~ (europium_sigs) 
| join AlertInfo on AlertId 
| project ThreatFamily, AlertId 

Analytic Rule Definition

id: d02275d6-45ba-4ddc-be90-8fa260aebe55
name: Identify Microsoft Defender Antivirus detection related to EUROPIUM
description: |
  This query looks for Microsoft Defender Antivirus detections related to EUROPIUM actor
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - AlertEvidence
tactics:
- Impact
query: |
  let europium_sigs = dynamic(["BatRunGoXml", "WprJooblash", "Win32/Eagle!MSR", "Win32/Debitom.A"]);  
  AlertEvidence 
  | where ThreatFamily in~ (europium_sigs) 
  | join AlertInfo on AlertId 
  | project ThreatFamily, AlertId 

Required Data Sources

Sentinel TableNotes
AlertEvidenceEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Campaigns/EUROPIUM/Identify Microsoft Defender Antivirus detection related to EUROPIUM.yaml