This will speed up a LOT of investigative efforts, I imagine. Awesome stuff to see from MSFT!
This will speed up a LOT of investigative efforts, I imagine. Awesome stuff to see from MSFT!
EmailEvents
| where SenderMailFromDomain == RecipientDomain
| where isempty(Connectors)
| where DeliveryAction !in ("Junked", "Blocked")
| extend AuthenticationDetails = parse_json(AuthenticationDetails)
| where AuthenticationDetails.DMARC == "fail"
EmailEvents
| where SenderMailFromDomain == RecipientDomain
| where isempty(Connectors)
| where DeliveryAction !in ("Junked", "Blocked")
| extend AuthenticationDetails = parse_json(AuthenticationDetails)
| where AuthenticationDetails.DMARC == "fail"
set-hostedcontentfilterpolicy -regionblocklist {@remove="XJ","XS","XE"}
set-hostedcontentfilterpolicy -regionblocklist {@remove="XJ","XS","XE"}
techcommunity.microsoft.com/blog/microso...
techcommunity.microsoft.com/blog/microso...
1️⃣By giving, you show you value safe streets. In the very contested arena of street use, our leaders take note. We want to be a formidable force for streets that function well for all of us
2️⃣We sponsor lots of fun events
secure.lglforms.com/form_engine/...
1️⃣By giving, you show you value safe streets. In the very contested arena of street use, our leaders take note. We want to be a formidable force for streets that function well for all of us
2️⃣We sponsor lots of fun events
secure.lglforms.com/form_engine/...
EmailEvents
| where EmailDirection == "Outbound"
| extend recipientdomain = split(RecipientEmailAddress, '@')[1]
| project recipientdomain
| summarize count()by tostring(recipientdomain)
EmailEvents
| where EmailDirection == "Outbound"
| extend recipientdomain = split(RecipientEmailAddress, '@')[1]
| project recipientdomain
| summarize count()by tostring(recipientdomain)
EmailEvents
| where geo_info_from_ip_address(SenderIPv4) != ""
| extend GeoIPInfo = geo_info_from_ip_address(SenderIPv4)
| extend country = tostring(parse_json(GeoIPInfo).country)
| project country
| summarize count()by country
EmailEvents
| where geo_info_from_ip_address(SenderIPv4) != ""
| extend GeoIPInfo = geo_info_from_ip_address(SenderIPv4)
| extend country = tostring(parse_json(GeoIPInfo).country)
| project country
| summarize count()by country