Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This query looks for emails that were overridden by IP, without any detection th

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

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

```kusto
EmailEvents
| where OrgLevelAction == "Allow" and ThreatTypes != ""
| where OrgLevelAction == "Allow" and ThreatTypes == ""
|summarize count() by SenderFromAddress
| top 10 by count_
```
Expand Down