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

Update whoIs.md #934

Merged
merged 1 commit into from
Feb 21, 2024
Merged
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
20 changes: 10 additions & 10 deletions docs/xdr/usecases/playbook/whoIs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WHOIS MODULE CONFIGURATION
# Whois module configuration

This use case describes how to use WhoIs module in order to enrich an IP address, a domain name or a URL.
This use case describes how to use Whois module in order to enrich an IP address, a domain name or a URL.

## Prerequisites

Expand All @@ -24,12 +24,12 @@ You can find the configuration below:

| Module | Configuration |
| --- | --- |
| Alert webhook | configure module & trigger configuration |
| Get Alert | uuid = `alert_uuid` of Alert webhook |
| Get Events | earliest_time = `first_seen_at` of **Get alert**, latest_time = `last_seen_at` of **Get alert**, query = `short_id` of **Get alert** |
| Foreach | items = `Events` of Get Events |
| Store | item, append, `{{ node.x.default.value['source.ip'] }}` x is the node of ForEach (that can be found in the code tab) |
| Foreach | items = {{ store.item|unique|list }} |
| Whois | query = `Node.x.Domain.Whois.raw` x is the node of ForEach (that can be found in the code tab) |
| Comment alert | **content** = Domain Name : `{{ node.12['Domain']['Name'] }}`, uuid = `alert_uuid` of **Alert webhook** |
| Manual Trigger | configure module & trigger configuration |
| Get Alert | uuid = `alert_uuid` of the **Manual Trigger** module |
| Get Events | earliest_time = `first_seen_at` of the **Get alert** module, latest_time = `last_seen_at` of **Get alert**, query = `short_id` of **Get alert** |
| Foreach | items = `Events` of the **Get Events** module |
| Store | item, append, `{{ node.x.default.value['source.ip'] }}` x is the node number of the **ForEach** module (that can be found in the code tab) |
| Foreach | items = `{{ store.item|unique|list }}` |
| Whois | query = `Node.x.Domain.Whois.raw` x is the node number of the **ForEach** module (that can be found in the code tab) |
| Comment alert | content = Domain Name : `{{ node.12['Domain']['Name'] }}`, uuid = `alert_uuid` of **Manual Trigger** |

Loading