Splunk Search

how do i query all events with ID4738 for a specific user?

tksre
New Member

how do i query all events with windows ID 4738 for a specific user

Tags (1)
0 Karma

stakor
Path Finder

If you do not have the windows TA installed, you can do something quick and dirty, like:
"EventCode=4738"
That will find your event ID, but to get the user name, you will need a fairly complex regex query using the rex command, because there are two "Account Name:"'s in the log, and you are probably looking for the second one. If you can use the Windows TA, it would probably be best to use that. Or follow gpradeepkumarreddy's advice, and just use:

index=<your_index> "EventCode=4738" "Account Name:*?<user_name>"
  • edited to insert "?", typo-ed it.
0 Karma

pradeepkumarg
Influencer

can you paste some sample events ? It might be as simple as below provided you have all the fields extracted

index=your_index user="your_user" ID="4738" 
0 Karma

adonio
Ultra Champion

index = your_index EventCode = 4738 user = yourUniqueUser
do you use the Windows TA?

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...