Splunk Search

Regex for looking at executables in a specific folder

tbradsher86
Engager

Hi All,

I am trying to create a search that will parse our endpoint logs for any executable that have been run from the Desktop or Downloads folders and any sub folders. Most searches I try return a large number of false positives (product names or folders have desktop or downloads in the name, but they aren't specifically in that folder. So to combat this I'm trying to rex the specific folder. Using the regex I have below on regex101 it works exactly how I expect. However in splunk I get, first a missing parenthesis error, and if I arbitrarily add another close parenthesis I get "look back is not a fixed length" error. Thoughts?

sourcetype=endpointsource AND event_name=process_ran
| rex field=CommandLine "(?<=\\Desktop|Downloads\\)(?<EXE_RAN>.*\.exe)"
| table _time ComputerName TargetFileName EXE_RAN user

Example of it working on regex101: https://regex101.com/r/24uxEB/1

Thanks!

0 Karma
1 Solution

jpolvino
Builder

Here is one way:

| rex field=CommandLine ".*(Desktop|Downloads)\\\(?<EXE_RAN>.*\.exe)"

https://regex101.com/r/24uxEB/2

View solution in original post

mayurr98
Super Champion

Try this:

| rex field=CommandLine "(?<=\\\Desktop|Downloads\\\)(?<EXE_RAN>.*\.exe)"

Also try run anywhere search

| makeresults 
| eval data="C:\users\user1\Downloads\blah.exe,C:\Users\user234\Downloads\sqldeveloper-17.4.0.355.2349-x64\sqldeveloper\sqldeveloper\bin\sqldeveloper64W.exe,C:\Users\user9823\AppData\Local\iManage\Installer\Updates\iManage Work Desktop for Windows x86.exe,C:\Users\johnsmith\Desktop\dataloader-44.0.0.exe" 
| makemv data delim="," 
| mvexpand data 
| table data 
| rex field=data "(?<=\\\Desktop|Downloads\\\)(?<EXE_RAN>.*\.exe)"
0 Karma

jpolvino
Builder

Here is one way:

| rex field=CommandLine ".*(Desktop|Downloads)\\\(?<EXE_RAN>.*\.exe)"

https://regex101.com/r/24uxEB/2

tbradsher86
Engager

This worked perfectly, that extra escape character really got me. Thank you!

0 Karma

tbradsher86
Engager

This gets me the following error still:

Error in 'rex' command: Encountered the following error while compiling the regex '.(Desktop|Downloads)(?..exe)': Regex: unmatched closing parenthesis.

0 Karma

jpolvino
Builder

Sorry, forgot Splunk needed another escape character. Fixed above!

0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Dynamic formatting from XML events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Stronger Security with Federated Search for S3, GCP SQL & Australian Threat ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...