Skip to main content

CrowdStrike FDR Host Inventory Source

thumbnail icon

The CrowdStrike FDR Host Inventory Source provides a secure endpoint to receive device data from the CrowdStrike Host-And-Host-Group-Management-APIs. It securely stores the required authentication, scheduling, and state tracking information.

info

The CrowdStrike API documentation is not public and can only be accessed by partners or customers.

note

This source is available in all deployments, including the Fed deployment.

Data collected

Polling IntervalData
24 hoursDevice data via a lookup table

Setup

Vendor configuration

note

To collect device data from the CrowdStrike platform, you must have an authorized CrowdStrike account. CrowdStrike APIs use an OAuth 2.0 authorization token to make authorized API calls. CrowdStrike API Client is required to get the OAuth 2.0 authorization token. To define a CrowdStrike API client, you must be designated as a CrowdStrike Falcon Administrator role.

In this configuration, you will set up the CrowdStrike FDR account and configure it to be authorized and authenticated to use device information from CrowdStrike FDR API. To obtain the auth token, you will need the following parameters.

API Client and API Secret

The API security token is used to authenticate with CrowdStrike FDR API. After successfully creating the API client, you will get the Client Id, Client Secret, and Base URL. To get the CrowdStrike API Client, follow the steps below:

  1. Access the CrowdStrike FDR Platform.
  2. Log in using your email address and password. After you've completed the two-factor authentication, you'll be directed to the application dashboard.
    crowdstrike-fdr-host-inventory-login-screen.png
  3. From the CrowdStrike FDR Console, on the left-hand panel of the dashboard, locate the Menu option and click on it.
    <crowdstrike-fdr-host-inventory-open-menu.png>
  4. Select the Support and resources option from the menu.
    <crowdstrike-fdr-host-inventory-support-and-resources.png>
  5. Navigate to and click on API clients and keys. You can then view existing clients or add new API clients from there.
    <crowdstrike-fdr-host-inventory-api-key-client.png>
  6. Click Add new API client. You will be prompted to give a descriptive name and select the appropriate API scopes.
    <crowdstrike-fdr-host-inventory-new-client.png>
  7. Provide a proper name and description and select the Read Hosts Scope. Click on ADD to complete the process.
    <crowdstrike-fdr-host-inventory-add-client.png>
  8. After you click on ADD a dialogue box will appear with the Client ID, Client Secret and Base URL. Copy and paste the Client Id, Client Secret and Base URL to a folder location because you will need them when creating the CrowdStrike FDR Host Inventory Source.
    <crowdstrike-fdr-host-inventory-copy-creds.png>

Region

Identify your Region based on your Base URL. The region can be selected from the list below.

RegionBase URL
US-1https://api.crowdstrike.com
US-2https://api.us-2.crowdstrike.com
EU-1https://api.eu-1.crowdstrike.com
US-GOV-1https://api.laggar.gcw.crowdstrike.com

Source configuration

When you create a CrowdStrike FDR Host Inventory 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.

To configure the CrowdStrike FDR Host Inventory API:

  1. In Sumo Logic, select Manage Data > Collection > Collection
  2. On the Collectors page, click Add Source next to a Hosted Collector.
  3. Select CrowdStrike FDR Host Inventory icon.
  4. Enter a Name to display for the Source in the Sumo Logic web application. The description is optional.
  5. (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.
  6. Forward to SIEM. Check the checkbox to forward your data to Cloud SIEM as inventory.
  7. (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 A green circle with a check mark is shown when the field exists in the Fields table schema.
    • 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.
  8. In Region, choose the region as per your Base URL. See Region section to know your region.
  9. In Client ID, enter the Client ID you generated and secured from the API Client section.
  10. In Client Secret, enter the Client Secret you generated and secured from the API Secret section.
  11. By default, Polling Interval is set to 24 hours.
  12. When you are finished configuring the Source, click Save.

Metadata Field

FieldValueDescription
_siemVendorCrowdStrikeSet when Forward To SIEM is checked.
_siemProductFDR Host InventorySet when Forward To SIEM is checked.
_siemEventIDInventorySet when Forward To SIEM is checked.

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 for details. 

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"CrowdStrike FDR Host Inventory"}YesDefine the specific schema type.
sourceTypeString"Universal"YesType of source.
configJSON ObjectConfiguration objectYesSource type specific values.

Configuration Object

ParameterTypeRequiredDefaultDescriptionExample
nameStringYesnullType a desired name of the source. The name must be unique per Collector. This value is assigned to the metadata field _source."mySource"
descriptionStringNonullType a description of the source."Testing source"
categoryStringNonullType a category of the source. This value is assigned to the metadata field _sourceCategory. See best practices for details."mySource/test"
fieldsJSON ObjectNonullJSON 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"}
regionStringYesnullThe Region of your CrowdStrike account.
clientIDStringYesnullThe CrowdStrike Client ID you want to use to authenticate collection requests.
clientSecretStringYesnullThe CrowdStrike Client Secret you want to use to authenticate collection requests.
pollingIntervalIntegerNo24This sets how often the Source checks for data.

JSON example

{
"api.version":"v1",
"source":{
"config":{
"name": "crowdstrike-fdr",
"description": "crowdstrike-fdr-inventory",
"region": "US-1",
"clientID": "client id",
"clientSecret": "client secret",
"fields":{
"_siemForward":false
}
},
"schemaRef":{
"type":"CrowdStrike FDR Host Inventory Source"
},
"sourceType":"Universal"
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "crowdstrike_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "CrowdStrike FDR Host Inventory Source"
}
config = jsonencode({
"name": "crowdstrike-fdr",
"description": "crowdstrike-fdr-inventory",
"region": "US-1",
"clientID": "client id",
"clientSecret": "client secret",
"fields":{
"_siemForward":false
}
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}

Download example

FAQ

info

Click here for more information about Cloud-to-Cloud sources.

Status
Legal
Privacy Statement
Terms of Use

Copyright © 2024 by Sumo Logic, Inc.