Kerberos service ticket renewed before expiry. Normal for long-running services.
Rarely suspicious alone. Golden Tickets with very long lifetimes may show unusual renewal patterns.
No standalone alerting. Use as supporting evidence for Golden Ticket investigations.
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName Starting points — adapt the log source, projected fields and thresholds for your environment.
SecurityEvent
| where EventID == 4770 // A Kerberos service ticket was renewed
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Security" EventCode=4770
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# A Kerberos service ticket was renewed — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
A Kerberos service ticket was renewed. Kerberos service ticket renewed before expiry. Normal for long-running services.
Event 4770 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Kerberos Authentication Service' subcategory (Success and/or Failure).
No standalone alerting. Use as supporting evidence for Golden Ticket investigations.