Analyze Windows Security logs to identify failed login attempts and gain hands-on experience with forensic log analysis.
-Powershell -Event Viewer -Windows 11
- Opened Event Viewer and filtered logs under
Securityby Event ID 4625 (failed logons). - Used Powershell to extract and save failed login events:
Get-WinEvent -LogName Security | Where-Object {$_.Id -eq 4625} | Select-Object TimeCreated, Message | Out-File .\FailedLogins.txt
- Multiple failed login attempts were recorded.
- Failure reason: account failed to logon
This lab provided practival experience with:
-
Identifying critical security events
-
Using Powershell to filter logs
-
Interpreting forensice log details from Windows environments
Janessa Reed