Skip to content

Commit 1e8b96f

Browse files
authored
Fix query conditions for email overrides
Updated queries to filter emails with OrgLevelAction 'Allow' and no ThreatTypes detected for specific types
1 parent 7ae516e commit 1e8b96f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

defender-office-365/step-by-step-guides/review-allow-entries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This query looks for emails that were overridden by IP, without any detection th
6666

6767
```kusto
6868
EmailEvents
69-
| where OrgLevelAction == "Allow" and ThreatTypes != ""
69+
| where OrgLevelAction == "Allow" and ThreatTypes == ""
7070
|summarize count() by SenderIPv4
7171
| top 10 by count_
7272
```
@@ -77,7 +77,7 @@ This query looks for emails that were overridden by sending domain without any d
7777

7878
```kusto
7979
EmailEvents
80-
| where OrgLevelAction == "Allow" and ThreatTypes != ""
80+
| where OrgLevelAction == "Allow" and ThreatTypes == ""
8181
|summarize count() by SenderFromDomain
8282
| top 10 by count_
8383
```
@@ -88,7 +88,7 @@ This query looks for emails that were overridden by sending address without any
8888

8989
```kusto
9090
EmailEvents
91-
| where OrgLevelAction == "Allow" and ThreatTypes != ""
91+
| where OrgLevelAction == "Allow" and ThreatTypes == ""
9292
|summarize count() by SenderFromAddress
9393
| top 10 by count_
9494
```

0 commit comments

Comments
 (0)