5378 Security log · Credential Manager info severity low volume

Windows Event ID 5378 — The requested credentials delegation was disallowed by policy

Credential delegation was denied by policy.

Why event 5378 matters

Blocked credential delegation may indicate attempt to use delegated credentials for lateral movement. Also indicates the policy is working correctly.

How to detect it

Alert: multiple blocked delegation attempts for the same account — possible lateral movement via delegation.

Log source
Security
Advanced Audit Policy — enable the 'Credential Manager' subcategory (Success and/or Failure).
Fields to pivot on
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName

Detection queries

Starting points — adapt the log source, projected fields and thresholds for your environment.

Sentinel / Defender KQL
SecurityEvent
| where EventID == 5378   // The requested credentials delegation was disallowed by policy
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
Splunk SPL
index=* sourcetype="WinEventLog:Security" EventCode=5378
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count   `# The requested credentials delegation was disallowed by policy — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
Hunt event 5378 in Sentinel/Defender →
Build a KQL query for this event in the KQL Query Builder.
Search all event IDs →
Open the interactive Windows Event ID lookup.

Related Credential Manager events

5376 Credential Manager credentials were backed up 5377 Credential Manager credentials were restored from a backup 5379 Credential Manager credentials were read 5380 Vault credentials were found 5381 Vault credentials were listed 5382 Vault credentials were read

Frequently asked questions

What is Windows Event ID 5378?

The requested credentials delegation was disallowed by policy. Credential delegation was denied by policy.

Which log records event 5378?

Event 5378 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Credential Manager' subcategory (Success and/or Failure).

How do you detect activity around event 5378?

Alert: multiple blocked delegation attempts for the same account — possible lateral movement via delegation.