Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove references to legacy fields #1835

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 3 deletions docs/xdr/features/investigate/querying_events.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ The Tables below detail the main fields that can be used to narrow down your sea

| name | type | description |
| ------------------------------ | ------ | ------------------------------------------- |
| sekoiaio.entity.name | string | Name of the entity |
| sekoiaio.entity.uuid | string | Unique identifier of the entity |
| sekoiaio.intake.key | string | The intake key |
| sekoiaio.intake.name | string | Name of the intake |
| sekoiaio.intake.uuid | string | Unique identifier of the intake |
| sekoiaio.intake.dialect | string | Name of the intake format |
| sekoiaio.intake.dialect_uuid | string | UUID of the intake format |
| sekoiaio.intake.parsing_status | string | The parsing status (`success` or `failure`) |
Expand Down
2 changes: 1 addition & 1 deletion docs/xdr/usecases/playbook/Add_UserAgent_in_comment.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Find the playbook configuration below:
- **earliest_time** `{{ ((node.2.first_seen_at | iso8601_to_timestamp) - 3600000) | timestamp_to_iso8601 }}`
- **fields** `user_agent.original`
- **latest_time** `now`
- **query** `source.ip:"{{ node.2['source'] }}" AND destination.ip:"{{ node.2['target'] }}" AND entity.name:"{{ node.2['entity']['name'] }}"`
- **query** `source.ip:"{{ node.2['source'] }}" AND destination.ip:"{{ node.2['target'] }}" AND entity.uuid:"{{ node.2['entity']['uuid'] }}"`

`Comment Alert`
- **content** `{{ node.3| jsonpath("$.fields[*].common_values[*]['value']", True) }}% of time this user-agent "{{ node.3| jsonpath("$.fields[*].common_values[*]['name']", True) }}}" was seen on these events during the last 60 minutes.`
Loading