Splunk Search

How to find SSH session in past month

disasters
Explorer

I want to know that there are or not SSH sessions which is in last 5 minutes in past 1 month. (except today)

- I want to compare srcip and dstip

- Time range picker (last 5 minutes)

index=fw AND dstport=22 NOT [ search  index=fw AND dstport=22 earliest=-1mon@mon latest=-1day@day | fields + srcip, dstip]
| dedup srcip, dstip
| table _time, srcip, dstip, dstport, protocal, action, hostname

 

this is not working correctly.


Labels (1)
0 Karma
1 Solution

manjunathmeti
Champion

Hi @disasters 

Try this query,

index=fw dstport=22 NOT [ search  index=fw dstport=22 earliest=-1mon@d latest=-1d@d  | stats count by srcip, dstip |  fields srcip, dstip | format]
| dedup srcip, dstip
| table _time, srcip, dstip, dstport, protocal, action, hostname

 

If this reply helps you, an upvote/like would be appreciated.

View solution in original post

disasters
Explorer

It works.

Could you explain purpose of stats, format?

0 Karma

manjunathmeti
Champion

stats is used as dedup to remove duplicate records and format is used to convert results into a single linear search string.

More on format here: https://docs.splunk.com/Documentation/SplunkCloud/latest/Search/Changetheformatofsubsearchresults#Ch...

0 Karma

manjunathmeti
Champion

Hi @disasters 

Try this query,

index=fw dstport=22 NOT [ search  index=fw dstport=22 earliest=-1mon@d latest=-1d@d  | stats count by srcip, dstip |  fields srcip, dstip | format]
| dedup srcip, dstip
| table _time, srcip, dstip, dstport, protocal, action, hostname

 

If this reply helps you, an upvote/like would be appreciated.

Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

  Ready to master Kubernetes and cloud monitoring like the pros?Join Splunk’s Growth Engineering team for an ...

Wrapping Up Cybersecurity Awareness Month

October might be wrapping up, but for Splunk Education, cybersecurity awareness never goes out of season. ...

🌟 From Audit Chaos to Clarity: Welcoming Audit Trail v2

🗣 You Spoke, We Listened  Audit Trail v2 wasn’t written in isolation—it was shaped by your voices.  In ...