Skip to content

Commit

Permalink
Fix process.name
Browse files Browse the repository at this point in the history
  • Loading branch information
lvoloshyn-sekoia committed Dec 13, 2024
1 parent 2841ca8 commit 7f2c8bd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Trend Micro/trend-micro-vision-one-oat/ingest/parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ stages:
host.os.version: "{{parsed_event.message.detail.osVer}}"
host.os.full: "{{parsed_event.message.detail.osDescription}}"

process.name: "{{parsed_event.message.detail.processName or parsed_event.message.detail.ObjectName}}"
process.name: "{{parsed_event.message.detail.processName | basename or parsed_event.message.detail.ObjectName | basename}}"
process.parent.pid: "{{parsed_event.message.detail.processPid}}"
process.parent.user.name: "{{parsed_event.message.detail.processUser}}"
process.parent.user.domain: "{{parsed_event.message.detail.processUserDomain}}"
Expand All @@ -44,7 +44,7 @@ stages:
process.parent.hash.sha1: "{{parsed_event.message.detail.processFileHashSha1}}"
process.parent.hash.sha256: "{{parsed_event.message.detail.processFileHashSha256}}"
process.parent.hash.md5: "{{parsed_event.message.detail.processFileHashMd5}}"
process.parent.parent.name: "{{parsed_event.message.detail.parentName}}"
process.parent.parent.name: "{{parsed_event.message.detail.parentName | basename}}"
process.parent.parent.executable: "{{parsed_event.message.detail.parentFilePath}}"
process.parent.parent.command_line: "{{parsed_event.message.detail.parentCmd}}"
process.parent.parent.pid: "{{parsed_event.message.detail.parentPid}}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"process": {
"command_line": "C:\\Windows\\system32\\sppsvc.exe",
"name": "C:\\Windows\\System32\\services.exe",
"name": "services.exe",
"parent": {
"command_line": "C:\\Windows\\system32\\services.exe",
"executable": "C:\\Windows\\System32\\services.exe",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"process": {
"command_line": "\"C:\\Windows\\system32\\klist.exe\"",
"name": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe",
"name": "powershell_ise.exe",
"parent": {
"command_line": "\"C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\PowerShell_ISE.exe\" ",
"executable": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe",
Expand All @@ -57,7 +57,7 @@
"sha1": "b1db7fd8ea0d2fb6ca854609c9ff7de5a822b316",
"sha256": "4e5fe7cf2873f4e4157d6592154179f6efe0b200dbb72fbdca039e4e4c72d4ac"
},
"name": "C:\\Windows\\explorer.exe",
"name": "explorer.exe",
"pid": "9920",
"start": "2024-11-26T16:35:53.785000Z",
"user": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"vendor": "TrendMicro"
},
"process": {
"name": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe",
"name": "powershell_ise.exe",
"parent": {
"command_line": "\"C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\PowerShell_ISE.exe\" ",
"executable": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe",
Expand All @@ -76,7 +76,7 @@
"sha1": "f021ca2dca81ee77aa80467096a804a26cd11364",
"sha256": "f2e4604dfae18859b13a4efee601df6937e99dd96251c11205c30022b308868f"
},
"name": "C:\\Windows\\explorer.exe",
"name": "explorer.exe",
"pid": "9920",
"start": "2024-11-26T16:35:53.785000Z",
"user": {
Expand Down

0 comments on commit 7f2c8bd

Please sign in to comment.