Splunk Search

How to search for users that accessed the same system more than 5 times in 10 minutes and alert on this?

qiaojing
Path Finder

Hi,

I'm trying to search for users that access the SAME system more than 5 times in 10 minutes, in order to identify any abused usage of the system. I'm hoping to create an alert for such an event.

Currently, I've come up with this:

...| stats dc(System_ID) count by userID | where count>5

But I'm not sure if it's correct and how to search within the 10 minute time frame. Please help me out. I'm quite new to Splunk Enterprise.

Thank you very much! 🙂

0 Karma

sundareshr
Legend

Try this

.... | bin span=10m _time as time | stats dc(userID) as NoAttempts by time System_ID | where NoAttempts>=5

qiaojing
Path Finder

Hi this is my latest code where the threshold is the 95th percentile.

eventtype="centralizedlog"(hasAccess=Y) | bin span=20m _time | stats dc(System_ID) count by userID, _time| eventstats perc95(count) as adnorm | where count>adnorm | rename count as "Num of Log Events"| fields - adnorm - dc(System_ID)

Anyone knows how I can scheduled an alert that alerts me each time such event occurs? Thank you.

0 Karma

sundareshr
Legend

If your search is working, here's the documentation for creating an alert

http://docs.splunk.com/Documentation/Splunk/6.4.1/Alert/Definescheduledalerts

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...