About
Me
B.C.W.H.S.
LLC
Contact
Me
My
Resume
PowerShell
Module
Scan
Website
Simple
SIEM
Visitor
Information
Site Title

Simple Windows Security Information and Event Management (SIEM)


Generate a CSV file using PowerShell on your Windows system and upload here for analysis.
Format Required using PowerShell.
 
Step 1: Open Windows PowerShell (Admin) prompt and run one of the code snippets to generate a CSV file
. (Change Export path to a location of your choosing)
 
1) Application Log

Get-EventLog -logName "Application" -newest 3000 | Select MachineName,TimeGenerated,EntryType,Source,Message | Export-Csv -Path "c:\temp\application.csv" -Force;

2) System Log

Get-EventLog -logName "System" -newest 3000 | Select MachineName,TimeGenerated,EntryType,Source,Message | Export-Csv -Path "c:\temp\system.csv" -Force;

3) Security Log

Get-EventLog -logName "Security" -newest 3000 | Select MachineName,TimeGenerated,EntryType,Source,Message | Export-Csv -Path "c:\temp\security.csv" -Force;

Step 2: Upload the file here.
Step 3: Click on the file in the list to view the issues.
Step 4: Delete the file when finished.

Upload CSV File Contents


(3 MB Maximum File Size)

By submitting data above, you are agreeing to my Terms of Service and Privacy Notice, and to the sharing of your Sample submission. Please do not submit any personal information; I am not responsible for the contents of your submission.

SIEM Created With...

Adobe ColdFusion ColdFusion PowerShell PowerShell
About
Me
B.C.W.H.S.
LLC
Contact
Me
My
Resume
PowerShell
Module
Scan
Website
Simple
SIEM
Visitor
Information