Cette requête permet de :
- Identifier les événements Seamless SSO sur les 30 derniers jours.
- Corréler ces événements avec les infos des devices.
- Déterminer si l’usage de Seamless SSO est cohérent avec le type d’adhésion du device.
// Get all device info we can find
let devices = (
DeviceInfo
// Search for 14 days
| where TimeGenerated > ago(14d)
// Normalize DeviceName
// --> if it is an IP Address we keep it
// --> If it is not an IP Address we only use the hostname for correlation
| extend DeviceName = iff(ipv4_is_private(DeviceName), DeviceName, tolower(split(DeviceName, ".")[0]))
// Only get interesting data
| distinct DeviceName, OSPlatform, OSVersion, DeviceId, OnboardingStatus, Model, JoinType
);
IdentityLogonEvents
// Get the last 30 days of logon events on Domain Controllers
| where TimeGenerated > ago(30d)
// Search for Seamless SSO events
| where Application == "Active Directory" and Protocol == "Kerberos"
| where TargetDeviceName == "AZUREADSSOACC"
// Save the domain name of the Domain Controller
| extend OnPremisesDomainName = strcat(split(DestinationDeviceName, ".")[-2], ".", split(DestinationDeviceName, ".")[-1])
// Normalize DeviceName
// --> if it is an IP Address we keep it
// --> If it is not an IP Address we only use the hostname for correlation
| extend DeviceName = iff(ipv4_is_private(DeviceName), DeviceName, tolower(split(DeviceName, ".")[0]))
// Only use interesting data and find more info regarding the source device
| distinct AccountUpn, OnPremisesDomainName, DeviceName
| join kind=leftouter devices on DeviceName
| project-away DeviceName1
// Check if Seamless SSO usage is expected
| extend ['Seamless SSO Expected'] = case(
// Cases where we do not expect Seamless SSO to be used
JoinType == "Hybrid Azure AD Join" or
JoinType == "AAD Joined" or
JoinType == "AAD Registered", "No",
// Cases where we do expect Seamless SSO to be used
JoinType == "Domain Joined" or
(OSPlatform startswith "Windows" and toreal(OSVersion) < 10.0) , "Yes",
// Cases that need to be verified
"Unknown (to verify)"
)

Laisser un commentaire