Alerting

Create alert for 5+ failed authentications for any single user

clwboscovs
Engager

I want to create an alert that monitors 5+ authentication failures for VPN login within an hour, but I'm not sure how to get the alert to monitor for 5+ failures for any single user.

Here's an example log:

[2020-08-17 11:40:10,550] [IG Audit Writer] [INFO ] [IG.AUDIT] [AUD7505] [VPN_AD_Group/user] The Radius server ise_servers rejected authentication for user VPN_AD_Group/user.

Labels (1)
Tags (1)
0 Karma
1 Solution

impurush
Contributor

@clwboscovs 

Could you please tell me what is the user name in your log?
And is it already the user name is extracted into any field?


index=<your index> sourcetype=<your sourcetype> "The Radius server ise_servers rejected authentication"
| stats count by user
| where count > 5

 

View solution in original post

thambisetty
SplunkTrust
SplunkTrust
index=yourindex rejected authentication 
| rex "\s(?<user>[\w\/]+)\.$"
| stats count by user 
| where count > 5
————————————
If this helps, give a like below.

impurush
Contributor

@clwboscovs 

Could you please tell me what is the user name in your log?
And is it already the user name is extracted into any field?


index=<your index> sourcetype=<your sourcetype> "The Radius server ise_servers rejected authentication"
| stats count by user
| where count > 5

 

clwboscovs
Engager

The field for the sourcetype is "user", so your solution works for me perfectly. Thank you!

0 Karma
Get Updates on the Splunk Community!

Index This | When is October more than just the tenth month?

October 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

What’s New & Next in Splunk SOAR

 Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us for an ...