Splunk Enterprise Security

In Splunk Enterprise Security, can you help me with my Use Cases set up?

arorayo
New Member

I want to set up a use case in Splunk, and I am new in this application

  1. Logon failures for a user ID during a particular time.
  2. Single ID tried to logon multiple applications at same time.

Any help how to start with ?

0 Karma
1 Solution

woodcock
Esteemed Legend

Get all your data in the CIM and accelerate your Authentication datamodel. Then your 2 searches will be:

| tstats summariesonly=true allow_old_summaries=true count
FROM datamodel=Authentication 
WHERE index=* AND nodename="Authentication.Failed_Authentication"
BY Authentication.user

And:

| tstats summariesonly=true allow_old_summaries=true count dc(Authentication.app) AS app_count values(Authentication.app)
FROM datamodel=Authentication 
WHERE index=* AND nodename="Authentication.Successful_Authentication"
BY Authentication.user
| sort 0 - app_count

View solution in original post

0 Karma

woodcock
Esteemed Legend

Get all your data in the CIM and accelerate your Authentication datamodel. Then your 2 searches will be:

| tstats summariesonly=true allow_old_summaries=true count
FROM datamodel=Authentication 
WHERE index=* AND nodename="Authentication.Failed_Authentication"
BY Authentication.user

And:

| tstats summariesonly=true allow_old_summaries=true count dc(Authentication.app) AS app_count values(Authentication.app)
FROM datamodel=Authentication 
WHERE index=* AND nodename="Authentication.Successful_Authentication"
BY Authentication.user
| sort 0 - app_count
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The Splunk Security Essentials app (https://splunkbase.splunk.com/app/3435/) show how to implement those and many other use cases.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...