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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...