From 4e30456db3b77aba183dd2dbe76194ab41c18756 Mon Sep 17 00:00:00 2001 From: Carlos Castillo Date: Mon, 24 Feb 2025 14:23:31 -0600 Subject: [PATCH 1/9] Add docs for new Bitwarden integration --- .../bitwarden.md | 97 ++++++++++++++++++ static/files/c2c/bitwarden/example.json | 16 +++ static/files/c2c/bitwarden/example.tf | 17 +++ .../security-threat-detection/bitwarden.png | Bin 0 -> 5807 bytes 4 files changed, 130 insertions(+) create mode 100644 docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md create mode 100644 static/files/c2c/bitwarden/example.json create mode 100644 static/files/c2c/bitwarden/example.tf create mode 100644 static/img/integrations/security-threat-detection/bitwarden.png diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md new file mode 100644 index 0000000000..502e8e089e --- /dev/null +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -0,0 +1,97 @@ +--- +id: bitwarden-source +title: Bitwarden Source +sidebar_label: Bitwarden +tags: + - cloud-to-cloud + - bitwarden +description: Learn how to collect the event log from the Bitwarden API. +--- +import CodeBlock from '@theme/CodeBlock'; +import ExampleJSON from '/files/c2c/bitwarden/example.json'; +import MyComponentSource from '!!raw-loader!/files/c2c/bitwarden/example.json'; +import TerraformExample from '!!raw-loader!/files/c2c/bitwarden/example.tf'; +import useBaseUrl from '@docusaurus/useBaseUrl'; + +thumbnail icon + +The Bitwarden source will collect the events logs from their API. The event log will return unique IDs for many of its fields which makes it difficult to understand the logs without the contextual names of those IDs. This integration will additionally query the group, member and policy API endpoints before every poll cycle so it has current lookup information for the event log IDs. The event log is modified to include additional fields from the lookups so data like group names, member names, member emails and policy types can be added. + +## Data collected + +| API Endpoint | Data | +|:-------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `/public/events` | Ingests the events logs into Sumo Logic | +| `/public/groups` | Used to get the group names so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | +| `/public/members` | Used to get the member names and email addresses so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | +| `/public/policies` | Used to get the policy type so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | + +## Setup + +### Vendor configuration + +**Prerequisites** + +To collect event logs from the Bitwarden API, you must have a Bitwarden Enterprise account. The integration uses OAuth 2.0 Client Credentials. Follow the authentication [instructions in the authentication section of the public API page](https://bitwarden.com/help/public-api/). + +Be sure you know your API base URL. + +| Bitwarden API Base URL | Description | +|-------------------------------|----------------------------------------------------------------| +| `https://api.bitwarden.com` | Use this URL for most Bitwarden hosted installations. | +| `https://api.bitwarden.eu` | Use this URL for EU based Bitwarden hosted installations. | +| `https://your.domain.com/api` | Use this URL if you have a self hosted Bitwarden installation. | + +### Source configuration + +When you create a Bitwarden Source, you add it to a Hosted Collector. Before creating the Source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see [Configure a Hosted Collector](/docs/send-data/hosted-collectors/configure-hosted-collector). + +To configure the Bitwarden Source: +1. [**Classic UI**](/docs/get-started/sumo-logic-ui-classic). In the main Sumo Logic menu, select **Manage Data > Collection > Collection**.
[**New UI**](/docs/get-started/sumo-logic-ui). In the Sumo Logic top menu select **Configuration**, and then under **Data Collection** select **Collection**. You can also click the **Go To...** menu at the top of the screen and select **Collection**. +1. On the Collectors page, click **Add Source** next to a Hosted Collector. +1. Search for and select **Bitwarden** icon. +1. Enter a **Name** to display for the Source in the Sumo Logic web application. The description is optional. +1. (Optional) For **Source Category**, enter any string to tag the output collected from the Source. Category metadata is stored in a searchable field called `_sourceCategory`. +1. (Optional) **Fields**. Click the **+Add Field** link to define the fields you want to associate. Each field needs a name (key) and value. + * ![green check circle.png](/img/reuse/green-check-circle.png) A green circle with a check mark is shown when the field exists in the Fields table schema. + * ![orange exclamation point.png](/img/reuse/orange-exclamation-point.png) An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema it is ignored, known as dropped. +1. In **Bitwarden API Server Base URL**, enter the API Base URL for your Bitwarden installation. +1. In **OAuth 2.0 Client ID**, enter your Bitwarden OAuth 2.0 Client ID. +1. In **OAuth 2.0 Client Secret**, enter your Bitwarden OAuth 2.0 Client Secret. +1. (Optional) The **Polling Interval** is set for 15 minutes default, you can adjust it based on your needs. +1. When you are finished configuring the Source, click **Save**. + +## JSON schema + +Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See [How to Use JSON to Configure Sources](/docs/send-data/use-json-configure-sources) for details.  + +| Parameter | Type | Value | Required | Description | +|:-----------|:------------|:----------------------------------------------|:---------|:---------------------------------| +| schemaRef | JSON Object | `{"type":"Bitwarden"}` | Yes | Define the specific schema type. | +| sourceType | String | `"Universal"` | Yes | Type of source. | +| config | JSON Object | [Configuration object](#configuration-object) | Yes | Source type specific values. | + +### Configuration Object + +| Parameter | Type | Required | Default | Description | Example | +|:------------------|:------------|:---------|:--------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------| +| name | String | Yes | `null` | Type a desired name of the source. The name must be unique per Collector. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_source`. | `"Bitwarden C2C"` | +| description | String | No | `null` | Type a description of the source. | `"My Bitwarden event log collection"` | +| category | String | No | `null` | Type a category of the source. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_sourceCategory`. See [best practices](/docs/send-data/best-practices) for details. | `"bitwarden/eventlogs"` | +| fields | JSON Object | No | `null` | JSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field `_siemForward` to enable forwarding to SIEM. | `{"_siemForward": false, "fieldA": "valueA"}` | +| api_base_url | String | Yes | `null` | The API Base URL for your Bitwarden installation | | +| api_client_id | String | Yes | `null` | The Bitwarden OAuth 2.0 Client ID to use to authenticate requests. | | +| api_client_secret | String | Yes | `null` | The Bitwarden OAuth 2.0 Client Secret to use to authenticate requests. | | +| polling_interval | String | No | 15m | This sets how often the Source checks for data. The polling interval value should be at 5 minutes. | | + +### JSON example + +{MyComponentSource} + +Download example + +### Terraform example + +{TerraformExample} + +Download example diff --git a/static/files/c2c/bitwarden/example.json b/static/files/c2c/bitwarden/example.json new file mode 100644 index 0000000000..f14d6e2bf6 --- /dev/null +++ b/static/files/c2c/bitwarden/example.json @@ -0,0 +1,16 @@ +{ + "api.version":"v1", + "source":{ + "config":{ + "name": "Bitwarden Source", + "base_url": "https://api.bitwarden.com", + "client_id": "********", + "client_secret": "********", + "polling_interval": "15m" + }, + "schemaRef":{ + "type":"Bitwarden" + }, + "sourceType":"Universal" + } + } \ No newline at end of file diff --git a/static/files/c2c/bitwarden/example.tf b/static/files/c2c/bitwarden/example.tf new file mode 100644 index 0000000000..08ea1d35aa --- /dev/null +++ b/static/files/c2c/bitwarden/example.tf @@ -0,0 +1,17 @@ +resource "sumologic_cloud_to_cloud_source" "bitwarden_source" { + collector_id = sumologic_collector.collector.id + schema_ref = { + type = "Bitwarden" + } + config = jsonencode({ + "name":"Bitwarden Source", + "base_url":"https://api.bitwarden.com", + "client_id":"********", + "client_secret":"********", + "polling_interval":"15m", + }) +} +resource "sumologic_collector" "collector" { + name = "my-collector" + description = "Just testing this" +} \ No newline at end of file diff --git a/static/img/integrations/security-threat-detection/bitwarden.png b/static/img/integrations/security-threat-detection/bitwarden.png new file mode 100644 index 0000000000000000000000000000000000000000..d2ae92eef7e2fe53dafd0438b7fc805a375a38c4 GIT binary patch literal 5807 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 Y7}9Fo(8P7o@~?uPma%4~x?|LT00-7nq5uE@ literal 0 HcmV?d00001 From eec0419226855d30c461aa6f8e9b87257db1e0ca Mon Sep 17 00:00:00 2001 From: Carlos Castillo Date: Tue, 25 Feb 2025 14:19:20 -0600 Subject: [PATCH 2/9] Updates after schema change --- .../bitwarden.md | 35 ++++++++++--------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index 502e8e089e..1ab9807bd6 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -34,13 +34,9 @@ The Bitwarden source will collect the events logs from their API. The event log To collect event logs from the Bitwarden API, you must have a Bitwarden Enterprise account. The integration uses OAuth 2.0 Client Credentials. Follow the authentication [instructions in the authentication section of the public API page](https://bitwarden.com/help/public-api/). -Be sure you know your API base URL. - -| Bitwarden API Base URL | Description | -|-------------------------------|----------------------------------------------------------------| -| `https://api.bitwarden.com` | Use this URL for most Bitwarden hosted installations. | -| `https://api.bitwarden.eu` | Use this URL for EU based Bitwarden hosted installations. | -| `https://your.domain.com/api` | Use this URL if you have a self hosted Bitwarden installation. | +:::important +If you are using a Self-Hosted installation, you will also need to fill out your OAuth Token URL. Please see [the details on the Bitwarden site](https://bitwarden.com/help/public-api/). +::: ### Source configuration @@ -56,6 +52,8 @@ To configure the Bitwarden Source: * ![green check circle.png](/img/reuse/green-check-circle.png) A green circle with a check mark is shown when the field exists in the Fields table schema. * ![orange exclamation point.png](/img/reuse/orange-exclamation-point.png) An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema it is ignored, known as dropped. 1. In **Bitwarden API Server Base URL**, enter the API Base URL for your Bitwarden installation. +1. (Optional) In **Self Hosted API Base URL**, enter the API Base URL for your Self-Hosted Bitwarden installation. This field is only available if you select `Self-Hosted` for the server base URL. +1. (Optional) In **OAuth 2.0 Token Url**, enter the OAuth 2.0 Token URL for your Self-Hosted Bitwarden installation. This field is only available if you select `Self-Hosted` for the server base URL. 1. In **OAuth 2.0 Client ID**, enter your Bitwarden OAuth 2.0 Client ID. 1. In **OAuth 2.0 Client Secret**, enter your Bitwarden OAuth 2.0 Client Secret. 1. (Optional) The **Polling Interval** is set for 15 minutes default, you can adjust it based on your needs. @@ -73,16 +71,19 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Ma ### Configuration Object -| Parameter | Type | Required | Default | Description | Example | -|:------------------|:------------|:---------|:--------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------| -| name | String | Yes | `null` | Type a desired name of the source. The name must be unique per Collector. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_source`. | `"Bitwarden C2C"` | -| description | String | No | `null` | Type a description of the source. | `"My Bitwarden event log collection"` | -| category | String | No | `null` | Type a category of the source. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_sourceCategory`. See [best practices](/docs/send-data/best-practices) for details. | `"bitwarden/eventlogs"` | -| fields | JSON Object | No | `null` | JSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field `_siemForward` to enable forwarding to SIEM. | `{"_siemForward": false, "fieldA": "valueA"}` | -| api_base_url | String | Yes | `null` | The API Base URL for your Bitwarden installation | | -| api_client_id | String | Yes | `null` | The Bitwarden OAuth 2.0 Client ID to use to authenticate requests. | | -| api_client_secret | String | Yes | `null` | The Bitwarden OAuth 2.0 Client Secret to use to authenticate requests. | | -| polling_interval | String | No | 15m | This sets how often the Source checks for data. The polling interval value should be at 5 minutes. | | +| Parameter | Type | Required | Default | Description | Example | +|:------------|:------------|:---------|:--------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------| +| name | String | Yes | `null` | Type a desired name of the source. The name must be unique per Collector. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_source`. | `"Bitwarden C2C"` | +| description | String | No | `null` | Type a description of the source. | `"My Bitwarden event log collection"` | +| category | String | No | `null` | Type a category of the source. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_sourceCategory`. See [best practices](/docs/send-data/best-practices) for details. | `"bitwarden/eventlogs"` | +| fields | JSON Object | No | `null` | JSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field `_siemForward` to enable forwarding to SIEM. | `{"_siemForward": false, "fieldA": "valueA"}` | +| api_base_url | String | Yes | `https://api.bitwarden.com` or ``https://api.bitwarden.eu` or `self-hosted` | The API Base URL for your Bitwarden installation. Use `self-hosted` here if you have a self hosted Bitwarden installation. | +| api_self_base_url | String | Potentially | `https://your.domain.com/api` | Your self hosted Bitwarden base URL. | | +| api_self_oauth_token_url | String | Potentially | `https://your.domain.com/identity/connect/token` | Your self hosted BitWarden OAuth token URL. | | +| api_client_id | String | Yes | `null` | The Bitwarden OAuth 2.0 Client ID to use to authenticate requests. | | +| api_client_secret | String | Yes | `null` | The Bitwarden OAuth 2.0 Client Secret to use to authenticate requests. | | +| polling_interval | String | No | `15m` | This sets how often the Source checks for data. The polling interval value should be at 5 minutes. | | + ### JSON example From 6fb77ca10cbb37b9a606cc03391aa2c9fc3f6fac Mon Sep 17 00:00:00 2001 From: Carlos Castillo Date: Tue, 25 Feb 2025 14:22:10 -0600 Subject: [PATCH 3/9] Update cid-redirects.json --- cid-redirects.json | 1 + 1 file changed, 1 insertion(+) diff --git a/cid-redirects.json b/cid-redirects.json index 189661f3a4..825978650b 100644 --- a/cid-redirects.json +++ b/cid-redirects.json @@ -2073,6 +2073,7 @@ "/cid/25641": "/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/qualys-vmdr-source", "/cid/25642": "/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/microsoft-exchange-trace-logs", "/cid/25643": "/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-fdr-host-inventory-source", + "/cid/25644": "/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden-source", "/cid/10225": "/docs/integrations/app-development/opentelemetry/jmx-opentelemetry", "/cid/10218": "/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/crowdstrike-spotlight-source", "/cid/30489": "/docs/metrics/introduction", From 98ec444df1a163bedd8eb37dd58fbbe8ceaf8da4 Mon Sep 17 00:00:00 2001 From: Carlos Castillo <45008325+carlos-castillo-jask@users.noreply.github.com> Date: Tue, 25 Feb 2025 15:50:29 -0600 Subject: [PATCH 4/9] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md Co-authored-by: Kim (Sumo Logic) <56411016+kimsauce@users.noreply.github.com> --- .../cloud-to-cloud-integration-framework/bitwarden.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index 1ab9807bd6..aca42a36cd 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -5,7 +5,7 @@ sidebar_label: Bitwarden tags: - cloud-to-cloud - bitwarden -description: Learn how to collect the event log from the Bitwarden API. +description: Learn how to collect event logs from the Bitwarden API. --- import CodeBlock from '@theme/CodeBlock'; import ExampleJSON from '/files/c2c/bitwarden/example.json'; From 9eb71b9c73fefd7b0b5ac3f460a4ba8107955ff5 Mon Sep 17 00:00:00 2001 From: Carlos Castillo <45008325+carlos-castillo-jask@users.noreply.github.com> Date: Tue, 25 Feb 2025 15:50:42 -0600 Subject: [PATCH 5/9] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md Co-authored-by: Kim (Sumo Logic) <56411016+kimsauce@users.noreply.github.com> --- .../cloud-to-cloud-integration-framework/bitwarden.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index aca42a36cd..27fb3239df 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -22,9 +22,9 @@ The Bitwarden source will collect the events logs from their API. The event log | API Endpoint | Data | |:-------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------| | `/public/events` | Ingests the events logs into Sumo Logic | -| `/public/groups` | Used to get the group names so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | -| `/public/members` | Used to get the member names and email addresses so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | -| `/public/policies` | Used to get the policy type so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | +| `/public/groups` | Gets the group names so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | +| `/public/members` | Gets the member names and email addresses so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | +| `/public/policies` | Gets the policy type so we can include it in the event log data. The integration does not ingest logs directly from this endpoint. | ## Setup From 6efa77e52b472c744503776918c101eb1cdd96fe Mon Sep 17 00:00:00 2001 From: Carlos Castillo <45008325+carlos-castillo-jask@users.noreply.github.com> Date: Tue, 25 Feb 2025 15:50:54 -0600 Subject: [PATCH 6/9] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md Co-authored-by: Kim (Sumo Logic) <56411016+kimsauce@users.noreply.github.com> --- .../cloud-to-cloud-integration-framework/bitwarden.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index 27fb3239df..f9ea7000f6 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -35,7 +35,7 @@ The Bitwarden source will collect the events logs from their API. The event log To collect event logs from the Bitwarden API, you must have a Bitwarden Enterprise account. The integration uses OAuth 2.0 Client Credentials. Follow the authentication [instructions in the authentication section of the public API page](https://bitwarden.com/help/public-api/). :::important -If you are using a Self-Hosted installation, you will also need to fill out your OAuth Token URL. Please see [the details on the Bitwarden site](https://bitwarden.com/help/public-api/). +If you are using a Self-Hosted installation, you must also provide your OAuth Token URL. For more details, see [Bitwarden's documentation](https://bitwarden.com/help/public-api/). ::: ### Source configuration From d7d29e8acdb5ffcc33e227ee98b20613da5e1a0e Mon Sep 17 00:00:00 2001 From: Carlos Castillo <45008325+carlos-castillo-jask@users.noreply.github.com> Date: Tue, 25 Feb 2025 15:51:11 -0600 Subject: [PATCH 7/9] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md Co-authored-by: Kim (Sumo Logic) <56411016+kimsauce@users.noreply.github.com> --- .../cloud-to-cloud-integration-framework/bitwarden.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index f9ea7000f6..610c7c00af 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -77,9 +77,9 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Ma | description | String | No | `null` | Type a description of the source. | `"My Bitwarden event log collection"` | | category | String | No | `null` | Type a category of the source. This value is assigned to the [metadata](/docs/search/get-started-with-search/search-basics/built-in-metadata) field `_sourceCategory`. See [best practices](/docs/send-data/best-practices) for details. | `"bitwarden/eventlogs"` | | fields | JSON Object | No | `null` | JSON map of key-value fields (metadata) to apply to the Collector or Source. Use the boolean field `_siemForward` to enable forwarding to SIEM. | `{"_siemForward": false, "fieldA": "valueA"}` | -| api_base_url | String | Yes | `https://api.bitwarden.com` or ``https://api.bitwarden.eu` or `self-hosted` | The API Base URL for your Bitwarden installation. Use `self-hosted` here if you have a self hosted Bitwarden installation. | -| api_self_base_url | String | Potentially | `https://your.domain.com/api` | Your self hosted Bitwarden base URL. | | -| api_self_oauth_token_url | String | Potentially | `https://your.domain.com/identity/connect/token` | Your self hosted BitWarden OAuth token URL. | | +| api_base_url | String | Yes | `https://api.bitwarden.com` or ``https://api.bitwarden.eu` or `self-hosted` | The API Base URL for your Bitwarden installation. Use `self-hosted` here if you have a self-hosted Bitwarden installation. | +| api_self_base_url | String | Potentially | `https://your.domain.com/api` | Your self-hosted Bitwarden base URL. | | +| api_self_oauth_token_url | String | Potentially | `https://your.domain.com/identity/connect/token` | Your self-hosted BitWarden OAuth token URL. | | | api_client_id | String | Yes | `null` | The Bitwarden OAuth 2.0 Client ID to use to authenticate requests. | | | api_client_secret | String | Yes | `null` | The Bitwarden OAuth 2.0 Client Secret to use to authenticate requests. | | | polling_interval | String | No | `15m` | This sets how often the Source checks for data. The polling interval value should be at 5 minutes. | | From b2ddcb06a466d0c78bafa0a55d85b71769e94625 Mon Sep 17 00:00:00 2001 From: Carlos Castillo <45008325+carlos-castillo-jask@users.noreply.github.com> Date: Tue, 25 Feb 2025 16:14:19 -0600 Subject: [PATCH 8/9] Update docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md Co-authored-by: Kim (Sumo Logic) <56411016+kimsauce@users.noreply.github.com> --- .../cloud-to-cloud-integration-framework/bitwarden.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index 610c7c00af..20bf71ae7b 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -15,7 +15,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; thumbnail icon -The Bitwarden source will collect the events logs from their API. The event log will return unique IDs for many of its fields which makes it difficult to understand the logs without the contextual names of those IDs. This integration will additionally query the group, member and policy API endpoints before every poll cycle so it has current lookup information for the event log IDs. The event log is modified to include additional fields from the lookups so data like group names, member names, member emails and policy types can be added. +The Bitwarden source collects event logs from their API. Many fields in the event log contain unique IDs, making it difficult to interpret the logs without contextual names. To enhance readability, this integration queries the group, member, and policy API endpoints before each poll cycle, ensuring up-to-date lookup information for event log IDs. The event log is then enriched with additional fields, such as group names, member names, member emails, and policy types. ## Data collected From bb495048528ba6c947e5c7fe2c3255111bbac435 Mon Sep 17 00:00:00 2001 From: John Pipkin Date: Tue, 25 Feb 2025 16:46:29 -0600 Subject: [PATCH 9/9] Add to left nav --- .../product-list/product-list-a-l.md | 1 + .../bitwarden.md | 2 +- .../index.md | 6 ++++++ sidebars.ts | 1 + .../security-threat-detection/bitwarden.png | Bin 5807 -> 16674 bytes 5 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/integrations/product-list/product-list-a-l.md b/docs/integrations/product-list/product-list-a-l.md index 85f2ad2455..fbd4b48df7 100644 --- a/docs/integrations/product-list/product-list-a-l.md +++ b/docs/integrations/product-list/product-list-a-l.md @@ -130,6 +130,7 @@ For descriptions of the different types of integrations Sumo Logic offers, see [ | Thumbnail icon | [Barracuda WAF](https://www.barracuda.com/products/application-protection/web-application-firewall) | App: [Barracuda WAF](/docs/integrations/security-threat-detection/barracuda-waf/)
Partner integration: [Barracuda CloudGen Firewall](https://campus.barracuda.com/product/cloudgenfirewall/doc/91132156/sumo-logic-integration/) | | Thumbnail icon | [BetterCloud](https://www.bettercloud.com/) | Partner integration: [BetterCloud](https://support.bettercloud.com/s/article/Integrating-Sumo-Logic-with-BetterCloud-bc45575) | | Thumbnail icon | [Bitbucket](https://bitbucket.org/product) | App: [Bitbucket](/docs/integrations/app-development/bitbucket/) | +| Thumbnail icon | [Bitwarden](https://bitwarden.com/) | Collector: [Bitwarden Source](/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden-source) | | Thumbnail icon | [Bitdefender](https://www.bitdefender.com/) | Automation integration: [Bitdefender GravityZone](/docs/platform-services/automation-service/app-central/integrations/bitdefender-gravityzone/)
Cloud SIEM integration: [Bitdefender](https://github.com/SumoLogic/cloud-siem-content-catalog/blob/master/vendors/04de471f-70b0-4ffb-89a9-f094ef242248.md)
Partner integration: [Bitdefender](https://www.bitdefender.com/business/support/en/77209-158570-sumo-logic.html) | | Thumbnail icon | [BitSight](https://www.bitsight.com/) | Automation integration: [BitSight Security Performance Management](/docs/platform-services/automation-service/app-central/integrations/bitsight-security-performance-management/) | | Thumbnail icon | [Blackberry](https://www.blackberry.com/us/en) | App: [Cylance](/docs/integrations/security-threat-detection/cylance/)
Automation integration: [Cylance Protect](/docs/platform-services/automation-service/app-central/integrations/cylanceprotect/)
Cloud SIEM integrations:
- [Blackberry](https://github.com/SumoLogic/cloud-siem-content-catalog/blob/master/vendors/ac6a961b-590c-4dd4-8402-56f4a4cddd98.md)
- [Cylance](https://github.com/SumoLogic/cloud-siem-content-catalog/blob/master/vendors/c57feda1-8da4-464d-b6cf-2c9982b71e57.md) | diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md index 20bf71ae7b..1ec6848a45 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden.md @@ -13,7 +13,7 @@ import MyComponentSource from '!!raw-loader!/files/c2c/bitwarden/example.json'; import TerraformExample from '!!raw-loader!/files/c2c/bitwarden/example.tf'; import useBaseUrl from '@docusaurus/useBaseUrl'; -thumbnail icon +thumbnail icon The Bitwarden source collects event logs from their API. Many fields in the event log contain unique IDs, making it difficult to interpret the logs without contextual names. To enhance readability, this integration queries the group, member, and policy API endpoints before each poll cycle, ensuring up-to-date lookup information for event log IDs. The event log is then enriched with additional fields, such as group names, member names, member emails, and policy types. diff --git a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md index c0c9e8438c..203ac5ef4f 100644 --- a/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md +++ b/docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/index.md @@ -121,6 +121,12 @@ In this section, we'll introduce the following concepts:

Provides a secure endpoint to receive data from Azure Event Hubs.

+
+
+ icon

Bitwarden

+

Learn how to collect event logs from the Bitwarden API.

+
+
box-logo.svg

Box

diff --git a/sidebars.ts b/sidebars.ts index 995aea0b56..fb8923655c 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -436,6 +436,7 @@ module.exports = { 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/automox-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/aws-cost-explorer-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/azure-event-hubs-source', + 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/bitwarden-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/box-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/carbon-black-cloud-source', 'send-data/hosted-collectors/cloud-to-cloud-integration-framework/carbon-black-inventory-source', diff --git a/static/img/integrations/security-threat-detection/bitwarden.png b/static/img/integrations/security-threat-detection/bitwarden.png index d2ae92eef7e2fe53dafd0438b7fc805a375a38c4..cf5ddd2bd0e8e34ce1bb46a22ca050917f490dc3 100644 GIT binary patch literal 16674 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

Sk;t#xTMkz3_{J%QYx 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 Y7}9Fo(8P7o@~?uPma%4~x?|LT00-7nq5uE@