Splunk Search

1 Search with two results

jcrensh
Explorer

I have a saved search returns the number of failed logins to a domain over a 24 hour period.

source="wineventlog:security" ("EventCode=4625") OR ("EventCode=529") host=dc*snlnt | stats count by host | rename count as "Unsuccessful Logins" | sort "Unsuccessful Logins"

That produces the following:

Host Unsuccessful Logins
MachineA Total_MachineA
MachineB Total_MachineB (and so on)

What I want to do is now add another running total of event id's 4624 and 528 as "Successful Logins" to the same search and produce the following:

Host Unsuccessful Logins Successful Logins
MachineA Total_MachineA Total_MachineA
MachineB Total_MachineB Total_MachineB (and so on)

It would be nice to have a way of determining the average per day over the last 7 days per host, but I am not sure what to do when you have a day with a higher than normal Unsuccessful or Successful count - that would then throw off your average over 7 days.

Thanks in advance,

Jason

Tags (1)
0 Karma
1 Solution

eelisio2
Path Finder

The following will give you both results in the same search in descending order by Unsuccessful Logins.

source="wineventlog:security" host=dc*snlnt | stats count(eval(EventCode="4625" OR EventCode="529")) as "Unsuccessful Logins", count(eval(EventCode="4624" OR EventCode="528")) as "Successful Logins" by host | sort -"Unsuccessful Logins" | table host "Unsuccessful Logins" "Successful Logins"

View solution in original post

0 Karma

jcrensh
Explorer

Thank you very much, this worked like a champ.

0 Karma

eelisio2
Path Finder

The following will give you both results in the same search in descending order by Unsuccessful Logins.

source="wineventlog:security" host=dc*snlnt | stats count(eval(EventCode="4625" OR EventCode="529")) as "Unsuccessful Logins", count(eval(EventCode="4624" OR EventCode="528")) as "Successful Logins" by host | sort -"Unsuccessful Logins" | table host "Unsuccessful Logins" "Successful Logins"

0 Karma
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...