Splunk Search

How to replace random substring in path?

SplunkNewbie100
New Member

Hi all,

 

I  want to replace random substrings in path:

C:\Users\sjfklsj\Appdata\.... -> C:\Users\---\Appdata\....

C:\Users\aegdfedg\Appdata\.... -> C:\Users\---\Appdata\....

etc..

So I want to remove the random username from the path.
Thank you!

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| rex mode=sed "s/(?<x>Users\\\)(?<random>[^\\\]+)/\\1---/g"
0 Karma

yuanliu
SplunkTrust
SplunkTrust

A slightly more semantic approach could be

| eval path = split(path, "\\")
| eval path = mvjoin(mvappend(mvindex(path, 0, 1), "---", mvindex(path, 3, -1)), "\\")
Tags (2)
0 Karma
Get Updates on the Splunk Community!

Enterprise Security Content Update (ESCU) | New Releases

In December, the Splunk Threat Research Team had 1 release of new security content via the Enterprise Security ...

Why am I not seeing the finding in Splunk Enterprise Security Analyst Queue?

(This is the first of a series of 2 blogs). Splunk Enterprise Security is a fantastic tool that offers robust ...

Index This | What are the 12 Days of Splunk-mas?

December 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...