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!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...