Credentials were found in the Windows Vault.
Windows Vault stores RDP credentials and internet passwords. Access to vault credentials by unexpected processes indicates credential harvesting.
Alert: vault credential access by non-expected processes (PowerShell, cmd, unknown tools).
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName | Tactic | Technique |
|---|---|
| Credential Access | Windows Credential Manager (T1555.004) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
SecurityEvent
| where EventID == 5380 // Vault credentials were found
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Security" EventCode=5380
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# Vault credentials were found — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
Vault credentials were found. Credentials were found in the Windows Vault.
Event 5380 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Credential Manager' subcategory (Success and/or Failure).
Event 5380 is associated with: Windows Credential Manager (T1555.004).
Alert: vault credential access by non-expected processes (PowerShell, cmd, unknown tools).