↳ GitHub sourceAnalytics ruleHigh
PRODAFT USTA - Compromised credential used in successful sign-in
Description
'Correlates corporate credentials exposed in PRODAFT USTA Account Takeover Prevention
tickets with successful Microsoft Entra ID sign-ins for the same user. A successful
sign-in by an account whose credentials are known to be compromised is a strong signal
of account takeover. Requires the Microsoft Entra ID (SigninLogs) connector. Username
matching is best-effort (case-insensitive) because USTA may record either an email or a
bare username.'
- Rule type
- Scheduled
- Version
- 1.0.0
- Declared status
- Available
- Query frequency
- 1h
- Query period
- 14d
- Trigger
- gt 0
Declared MITRE coverage
Declared sources
Metadata from the source file. No dependencies inferred from KQL.
Connectors
Data types
KQL query
Original query, unchanged.
let lookback = 14d;
let detection = 1h;
let compromised =
PRODAFTUstaCompromisedCredentials
| where Created > ago(lookback)
| where IsCorporate == true
| where isnotempty(Username)
| extend MatchName = tolower(Username)
| summarize arg_max(TimeGenerated, TicketId, CompanyName, InfectionDate, Source) by MatchName;
SigninLogs
| where TimeGenerated > ago(detection)
| where ResultType == 0
| where isnotempty(UserPrincipalName)
| extend MatchName = tolower(UserPrincipalName)
| join kind=inner compromised on MatchName
| project
TimeGenerated,
UserPrincipalName,
IPAddress,
Location,
AppDisplayName,
ClientAppUsed,
TicketId,
CompanyName,
Source,
InfectionDate
Declared entities
Related content
Links established from declared identifiers and solution manifests.
Source provenance
GitHubDisplayed values come from files in Azure/Azure-Sentinel. They describe the published template, not your workspace configuration.
- Commit
9800e51↗- Source identifier
5da571b5-54f6-42c2-8c3e-27edd987ceec
GSTEP / CATALOG TRACKING
Added to catalog : 16 Sept 2026 · 05:49 UTC
Last change observed : 16 Sept 2026 · 05:49 UTC