Mar 14 2022 05:42 AM
I am trying to formulate a query that returns email TLD that are NOT in a specified list.
I have the following query which return those I am interested in:
Mar 14 2022 08:17 AM
Try this.
EmailEvents
| where not(SenderFromDomain has_any (".com", ".net", ".org", ".uk"))