Kerberos TGS request failed. Failure code indicates the reason.
Failed TGS requests can indicate attempts to access services with invalid or expired tickets. Silver Ticket forgery attempts may generate failures.
Alert: high volume of TGS failures for the same ServiceName — possible Silver Ticket brute force or broken application.
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName Starting points — adapt the log source, projected fields and thresholds for your environment.
SecurityEvent
| where EventID == 4773 // A Kerberos service ticket request failed
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Security" EventCode=4773
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# A Kerberos service ticket request failed — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
A Kerberos service ticket request failed. Kerberos TGS request failed. Failure code indicates the reason.
Event 4773 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Kerberos Authentication Service' subcategory (Success and/or Failure).
Alert: high volume of TGS failures for the same ServiceName — possible Silver Ticket brute force or broken application.