Skip to main content

Crowdstrike FDR Source

thumbnail icon

The CrowdStrike Falcon Data Replicator (FDR) Source provides a secure endpoint to ingest Falcon Data Replicator events using the S3 ingestion capability by consumed SQS notifications of new S3 objects. 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
5 minFalcon Data Replicator Logs

Setup

Vendor configuration

note

You must contact the CrowdStrike support team to enable CrowdStrike FDR. If it's not enabled, your requests will receive HTTP 500 responses.

Once CrowdStrike FDR is enabled in the CrowdStrike console, navigate to SupportAPI Clients and Keys. You need to Create new credentials to copy the AWS Access Key IDAWS Secret Access Key, and SQS Queue URL to provide to Sumo Logic when creating your CrowdStrike FDR Source.

Source configuration

When you create a CrowdStrike FDR 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 a CrowdStrike FDR Source:

  1. In Sumo Logic, select Manage Data > Collection > Collection
  2. On the Collectors page, click Add Source next to a Hosted Collector.
  3. Search for and select CrowdStrike FDR.
  4. Enter a Name for the Source. 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. When configured with the Forward to SIEM option no fields are set.
  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 that does not exist in the Fields schema it is ignored, known as dropped.
  8. AWS Access Key ID: Provide your AWS Access Key ID you copied from CrowdStrike, see the Prerequisite.
  9. AWS Secret Access Key: Provide your AWS Secret Access Key you copied from CrowdStrike, see the Prerequisite.
  10. SQS Queue URL. Provide your SQS Queue URL you copied from CrowdStrike, see the Prerequisite.
  11. S3 Region. Select the S3 Region your data is in, this normally is the same region specified in the SQS Queue.
  12. (Optional) Historical Data Collection. Select the specified time range to ingest only the desired data. By default, it is seven days.
    • By default, all messages are ingested into Sumo Logic without any filtering. However, with the appropriate configuration, customers can ensure that only the desired data within the specified time range is ingested. For instance, if you want to ingest data from the last three days only, then you should configure the source by selecting 3 Days as the value.
    • Crowdstrike FDR will queue up to 7 days worth of data, if it's configured without any consumer ingesting the events. You should be aware that this historical data will be collected only with the C2C integration.
    • Crowdstrike FDR doesn't allow Sumo Logic to pass any parameter to collect data from a specific time range.
  13. Processing Rules for Logs. Configure any desired filters, such as allowlist, denylist, hash, or mask, as described in Create a Processing Rule.
  14. Advanced Options for Logs.
    • Timestamp Parsing. This option is selected by default. If it's deselected, no timestamp information is parsed at all.
    • Time Zone. There are two options for Time Zone. You can use the time zone present in your log files, and then choose an option in case time zone information is missing from a log message. Or, you can have Sumo Logic completely disregard any time zone information present in logs by forcing a time zone. It's very important to have the proper time zone set, no matter which option you choose. If the time zone of logs cannot be determined, Sumo Logic assigns logs UTC; if the rest of your logs are from another time zone your search results will be affected.
    • Timestamp Format. By default, Sumo Logic will automatically detect the timestamp format of your logs. However, you can manually specify a timestamp format for a Source. See Timestamps, Time Zones, Time Ranges, and Date Formats for more information.
  15. 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 for details. 

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"Crowdstrike FDR"}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"}
secretAccessKey`StringYesThe AWS Secret Access Key you got from CrowdStrike.
SqsQueueURLStringYesnullThe SQS Queue URL you got from CrowdStrike.
accessKeyIdStringYesnullThe AWS Access Key ID you got from CrowdStrike.
s3RegionStringYesotherThe S3 Region your data is in.
startTimeIntegerNootherTime range to ingest the desired data.

JSON example

{
"api.version":"v1",
"source":{
"schemaRef":{
"type":"Crowdstrike FDR"
},
"config":{
"automaticDateParsing":true,
"name":"FDR test",
"forceTimeZone":false,
"description":"Example config",
"secretAccessKey":"********",
"SqsQueueURL":"https://sqs.us-west-1.amazonaws.com/***/***",
"multilineEnabled":false,
"accessKeyId":"********",
"fields":{
"_siemForward":false
},
"category":"Sumo/FDR",
"timestampFormatAutoDetection":false,
"s3Region":"us-west-1",
"startTime": 0,
"useAutolineMatching":true
},
"state":{
"state":"Collecting"
},
"sourceType":"Universal"
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "crowdstrike_FDR_source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Crowdstrike FDR"
}
config = jsonencode({
"automaticDateParsing":true,
"name":"FDR test",
"forceTimeZone":false,
"description":"Example config",
"secretAccessKey":"********",
"SqsQueueURL":"https://sqs.us-west-1.amazonaws.com/***/***",
"multilineEnabled":false,
"accessKeyId":"********",
"fields":{
"_siemForward":false
},
"category":"Sumo/FDR",
"timestampFormatAutoDetection":false,
"s3Region":"us-west-1",
"startTime": 0
"useAutolineMatching":true
})
}
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.