Splunk Cloud Platform

SPL help - enterprise security

iherb_0718
Path Finder

Trying to modify this default correlation search:

| from inputlookup:access_tracker | stats min(firstTime) as firstTime,max(lastTime) as lastTime by user | where ((now()-'lastTime')/86400)>90

I want to exclude from this search if the field "user" includes a value that begins with "bob"

Thanks in advance

 

Labels (1)
0 Karma
1 Solution

scelikok
SplunkTrust
SplunkTrust

Hi @iherb_0718,

I didn't notice pipe , normally there is no need from command also but below should work based on your correlation search;

| from inputlookup:access_tracker | where NOT user LIKE "bob%"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user
| where ((now()-'lastTime')/86400)>90

or

| inputlookup access_tracker where user!="bob*"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)>90

 Both should be ok;

If this reply helps you an upvote is appreciated.

If this reply helps you an upvote and "Accept as Solution" is appreciated.

View solution in original post

0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @iherb_0718,

I didn't notice pipe , normally there is no need from command also but below should work based on your correlation search;

| from inputlookup:access_tracker | where NOT user LIKE "bob%"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user
| where ((now()-'lastTime')/86400)>90

or

| inputlookup access_tracker where user!="bob*"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)>90

 Both should be ok;

If this reply helps you an upvote is appreciated.

If this reply helps you an upvote and "Accept as Solution" is appreciated.
0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @iherb_0718,

You can use below;

| from inputlookup:access_tracker where user!="bob*"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)>90

 

If this reply helps you an upvote is appreciated.

If this reply helps you an upvote and "Accept as Solution" is appreciated.
0 Karma

iherb_0718
Path Finder

Sceikok,

that's exactly what I tried but it doesn't work.  By the way, there's a PIPE before the WHERE so i'm sure you meant it like this

 

| from inputlookup:access_tracker | where user!="bob*"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user
| where ((now()-'lastTime')/86400)>90

 

The problem is it doesn't like the asterisk after bob.  If I type in an exact user, I can see it gets excluded. If I include the asterik, I see all the "BOBs"

0 Karma

iherb_0718
Path Finder

anyone please?

0 Karma

iherb_0718
Path Finder

Sceikok thanks for the quick response. I want to EXCLUDE bob.   Therefore what booleon would that be? It won't be "LIKE"

0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @iherb_0718,

Please try this;

| from inputlookup:access_tracker where user LIKE "bob%"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)>90

 

If this reply helps you an upvote is appreciated.

If this reply helps you an upvote and "Accept as Solution" is appreciated.
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...