Splunk Search

How do I perform this awk command in Splunk?

Johnvey
Contributor

I would like to use the following cmd in splunk and I am getting errors.

egrep "Failed password" auth.log | awk '{print $13}' | sort | uniq -c | sort -rn | less

Is this possible?

(cross-posted from forums)

Tags (1)

cfield
Engager

try something along the lines of:

source=auth.log Failed password | rex "(?<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})" | stats count by src_ip | sort -count

this should produce a table of ip addresses and the count of the time they were in the logfile.

cfield
Engager

One caveat though, top will truncate the result set based on the limit= parameter, you would have to use limit=0 to get the same results.

0 Karma

Johnvey
Contributor

The clause "stats count by src_ip | sort -count" can be replaced with "top src_ip". The difference is that the "top" command will also add a "percent" field to the results.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...