Security

Report that shows login failure events occurred on the previous day grouped by source user

GIA
Path Finder

Hello, I need to generate the below report, can someone help please? thank you!!

 

format: .csv 

List of eventsauthentication failure activity, user logon failure : bad password, user logon failure: bad username,

table with subset of fields: user, date/time, VendorMsgID, account, class, process name, object, subject, logMsg) grouped by user

schedule: daily

search window: -24 hours

Expiration= 30 days

Labels (2)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

As to why the user is a $ sign, that would come from how the user field is being extracted from your data.

Much will depend on the data format you're using XML or otherwise and the TA you have installed to extract Windows event log data.

If you run this search in Verbose mode

index=WinEventLog* EventID=4625 earliest=-d@d latest=@d
| head 1

You will see the raw data and fields extracted for one event and on the left hand side you will see the extracted fields. If there is only a $ sign, then that's probably because the real user is not in the data - or it's not being extracted correctly.

Look at this regarding the event log

https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625

As for the first/last login time do this

index=WinEventLog* EventID=4625 earliest=-d@d latest=@d
| stats min(_time) as FirtEvent max(_time) as LastEvent count by user, _time, action, subject, message

Look at this list of aggrgation functions you can use to get information in the stats command

https://docs.splunk.com/Documentation/Splunk/9.1.1/SearchReference/Stats#Stats_function_options

 

View solution in original post

GIA
Path Finder

Thank you so much. It worked!  The only problem  I am facing now is that for some reason when I use that query(earliest=-d@d latest=@d), the "user" field shows up as a dollar sign ($) instead of the name of the user. Do you know what why?

*I was asked to group it by time but would like to know how to show the first or last time of the failed login for my own knowledge. Thanks again!

0 Karma

bowesmana
SplunkTrust
SplunkTrust

As to why the user is a $ sign, that would come from how the user field is being extracted from your data.

Much will depend on the data format you're using XML or otherwise and the TA you have installed to extract Windows event log data.

If you run this search in Verbose mode

index=WinEventLog* EventID=4625 earliest=-d@d latest=@d
| head 1

You will see the raw data and fields extracted for one event and on the left hand side you will see the extracted fields. If there is only a $ sign, then that's probably because the real user is not in the data - or it's not being extracted correctly.

Look at this regarding the event log

https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625

As for the first/last login time do this

index=WinEventLog* EventID=4625 earliest=-d@d latest=@d
| stats min(_time) as FirtEvent max(_time) as LastEvent count by user, _time, action, subject, message

Look at this list of aggrgation functions you can use to get information in the stats command

https://docs.splunk.com/Documentation/Splunk/9.1.1/SearchReference/Stats#Stats_function_options

 

GIA
Path Finder

Thanks a lot! This was very helpful and exactly what I needed. I appreciate you sharing the documentation links as well, been reading through it. 

0 Karma

GIA
Path Finder

Thank you. I need to collect and generate a syslog report that shows login failure events occurred on the previous day, grouped by source user

This is all I have been able to come up with so far:   

index=wineventlog* eventid=4625 earliest=-24 | stats count by user, _time, action, subject, message

0 Karma

bowesmana
SplunkTrust
SplunkTrust

What is your data that contains the info needed to produce this report and what have you tried so far?

 

0 Karma

GIA
Path Finder

Thank you. I need to collect and generate a syslog report that shows login failure events occurred on the previous day, grouped by source user

This is all I have been able to come up with so far:   

index=WinEventLog* EventID=4625 Earliest=-24 | stats count by user, _time, action, subject, message

0 Karma

bowesmana
SplunkTrust
SplunkTrust

Your Earliest statement is wrong, if you just want yesterday, do this

index=WinEventLog* EventID=4625 earliest=-d@d latest=@d
| stats count by user, _time, action, subject, message

which will give you a list of the failed logins - do you really want to group by _time as well or do you want to show the first or last time of the failed login?

 

Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...