What is a Low, Moderate, High or Severe threat in Defender for Endpoint and how do I find them in the telemetry?

Duncan de Waal 41 Reputation points
2024-03-29T16:04:18.51+00:00

I am trying to understand what a Low, Moderate, High or Severe threat in Defender for Endpoint is,
and how do I find them in the telemetry?

I see that the Intune Endpoint Protection configuration is configured like this:
User's image

This makes be believe that for Low severity threats MDE is actually not taking any action. I want to change that to 'Quarantine' but ideally I first find in the telemetry how much of these Low severity threats there are (before changing the setting on thousands of endpoints).

When I query the DeviceEvents table for ActionType 'AntivirusDetection' I don't actually see that severity. How can I find that?
I do see an 'Action' number that can be 0, 1 or 2 but I don't yet understand what it means.

DeviceEvents
| where Timestamp > ago(30d)
| where ActionType == "AntivirusDetection"
| extend ParsedFields = parse_json(AdditionalFields)
| extend Action = tostring(ParsedFields.Action)
| extend ThreatName = tostring(ParsedFields.ThreatName)
| extend WasRemediated = tostring(ParsedFields.WasRemediated)
| where WasRemediated != "true"
| summarize count() by ThreatName, Action, WasRemediated
| sort by count_
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
36,112 questions
0 comments No comments
{count} votes

Accepted answer
  1. Catherine Kyalo 570 Reputation points Microsoft Employee
    2024-04-11T10:40:29.1666667+00:00

    Hi @Duncan de Waal

    Below is a breakdown of severity levels:

    The Action field you're seeing corresponds to the action taken by Microsoft Defender for Endpoint in response to the threat. Here's what the numbers mean:

    • 0: No action was taken
    • 1: Quarantine
    • 2: Remove

    Finally by joining the blow two tables should be able to provide both severity and Action:

    DeviceEvents - https://learn.microsoft.com/en-us/microsoft-365/security/defender/advanced-hunting-deviceevents-table?view=o365-worldwide

    AlertInfo - https://learn.microsoft.com/en-us/microsoft-365/security/defender/advanced-hunting-alertinfo-table?view=o365-worldwide

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful