Skip to content

Commit efc7397

Browse files
Merge pull request #5858 from MicrosoftDocs/main
[AutoPublish] main to live - 12/07 22:38 PST | 12/08 12:08 IST
2 parents 7ae516e + 3c7a6f3 commit efc7397

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)