Skip to content

Commit 3c7a6f3

Browse files
authored
Merge pull request #5856 from MicrosoftDocs/chrisda
Update review-allow-entries.md
2 parents 63f27f2 + 295d82a commit 3c7a6f3

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)