Splunk Search

I am trying to create a field for sudo based on the following log entry

gceraso
Engager

I am trying to extract the username into a field that I can use and have so far been unsuccessful. I am doing this based off the log entries below.

Mar  4 17:20:43 hostname sudo: [ID 702911 local2.notice]    username : TTY=pts/3 ; PWD=/export/home/username ; USER=root ; COMMAND=/usr/bin/su -    
Mar  7 11:44:47 hostname sudo: [ID 702911 local2.notice]   user : TTY=pts/5 ; PWD=/export/home/user ; USER=root ; COMMAND=/usr/bin/su -

I have tried this search and regex but have been unsuccessful. If the username is a different length it won't pick it up. Also, it doesn't seem to pick up all occurrences of the same name either.

sudo "COMMAND=/usr/bin/su"
| rex "(?i)\\.notice\\]   (?P<FIELDNAME>\\w+\\s+:)"
| fields FIELDNAME
| dedup FIELDNAME
Tags (1)
0 Karma

Stephen_Sorkin
Splunk Employee
Splunk Employee

Try something like:

sudo "COMMAND=/usr/bin/su"
| rex "\\]\s+(?<FIELDNAME>\S+)"
| dedup FIELDNAME
0 Karma
Get Updates on the Splunk Community!

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

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 ...