NPS locked an account after too many VPN authentication failures.
VPN-targeted brute force sufficient to cause account lockout. Very high signal — indicates sustained attack against the VPN.
Alert on every occurrence. Treat as active attack — correlate with 6273 events.
SubjectUserNameTargetUserNameLogonTypeIpAddressWorkstationName | Tactic | Technique |
|---|---|
| Credential Access | Brute Force (T1110) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
SecurityEvent
| where EventID == 6279 // Network Policy Server locked the user account due to repeated failed authentication attempts
| project TimeGenerated, Computer, SubjectUserName, TargetUserName, LogonType, IpAddress, WorkstationName
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Security" EventCode=6279
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# Network Policy Server locked the user account due to repeated failed authentication attempts — add EventData fields: SubjectUserName, TargetUserName, LogonType, IpAddress`
Network Policy Server locked the user account due to repeated failed authentication attempts. NPS locked an account after too many VPN authentication failures.
Event 6279 is written to the Security channel by Microsoft-Windows-Security-Auditing. Advanced Audit Policy — enable the 'Network Policy Server' subcategory (Success and/or Failure).
Event 6279 is associated with: Brute Force (T1110).
Alert on every occurrence. Treat as active attack — correlate with 6273 events.