Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/sentinel_one/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# newer versions go on top
- version: "0.2.1"
changes:
- description: Adjusting relevant Alert fields and change event.kind to alert (For Sentinel One Threats)
type: enhancement
- version: "0.2.0"
changes:
- description: Update package to ECS 8.3.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ processors:
value: '8.3.0'
- set:
field: event.kind
value: event
value: alert
- set:
field: event.category
value: [malware]
Expand Down Expand Up @@ -34,6 +34,17 @@ processors:
formats:
- ISO8601
ignore_failure: true
- set:
field: event.action
copy_from: json.threatInfo.engines
Comment thread
ChriZzn marked this conversation as resolved.
Outdated
- set:
field: user.name
Comment thread
ChriZzn marked this conversation as resolved.
Outdated
copy_from: json.threatInfo.processUser
if: ctx.json.threatInfo.processUser != null
- set:
field: process.name
copy_from: json.threatInfo.originatorProcess
if: ctx.json.threatInfo.originatorProcess != null

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of the if you can use ignore_empty_value: true.

- rename:
field: json.agentDetectionInfo.accountId
target_field: sentinel_one.threat.detection.account.id
Expand Down