Skip to main content

Dragos Source

dragos-logo

Dragos is a cybersecurity platform with an ecosystem tailored for industrial environments, including Industrial Control Systems (ICS), Supervisory Control and Data Acquisition (SCADA), Distributed Control System (DCS), and Operational Technology (OT) environments. Dragos's Operational Technology (OT) offers clear visibility into your Industrial Control System (ICS) assets and communications. It monitors networks, detects threats, and addresses vulnerabilities without causing disruptions or shutdowns, helping you respond confidently to potential threats.

The Dragos source collects address, asset, vulnerability, and zone details from the Dragos API and sends it to Sumo Logic for streamlined analysis.

Data collected

Polling IntervalData
5 minutesVulnerability
24 hoursAddresses
24 hoursZones
24 hoursAssets

Setup

Vendor configuration

The Dragos source supports API token-based authentication and requires you to provide the Endpoint URL, API ID, and API Secret to access the data.

Endpoint URL

You can use the Hostname to create the Endpoint URL. For example, https://<hostname>/.

API ID and API Secret

Follow the instructions below to generate the API ID and API Secret:

  1. Sign in to the Dragos platform.
  2. Navigate to the Admin > User.
  3. Click ADD NEW API KEY under the API Keys section.
  4. Enter the name of the API Key in the Name field and then click GENERATE KEY.
  5. Copy the API ID and API Secret.

Source configuration

When you create a Dragos 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 and Source.

To configure a Dragos Source:

  1. Classic UI. In the main Sumo Logic menu, select Manage Data > Collection > Collection.
    New 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.
  2. On the Collection page, click Add Source next to a Hosted Collector.
  3. Search for and select Dragos.
  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. (Optional) Fields. Click the +Add button 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 is ignored, known as dropped.
  7. Endpoint URL. Enter the Dragos platform endpoint URL. For example, https://test.cxc.dragos.cloud/.
  8. API ID. Enter the API ID of your account collected from the Dragos platform. For example, 036fxxxx-b642-xxxx-99d3-fcxxxx2exxxx.
  9. API Secret. Enter the API Secret of your account collected from the Dragos platform.. For example, xxxU1TxxxxxxxxKSJwHYOpK37xxxxxxxxrEHAkU91xxxxxxxxxFrrJ06xxx.
  10. Select the checkbox depending on the type of data that you wish to collect.
  11. (Optional) Processing Rules for Logs. Configure any desired filters, such as allowlist, denylist, hash, or mask, as described in the Create a Processing Rule.
  12. 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 Use JSON to Configure Sources for details. 

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"Dragos"}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"}
requestEndpointStringYesnullThe API URL to fetch the data from the Dragos log source.https://sumologic-dragos.cxc.dragos.cloud/
apiIDStringYesnullAPI ID of your account for authorization.036fxxxx-b642-xxxx-99d3-fcxxxx2exxxx
apiSecretStringYesnullAPI Secret of your account for authorization.xxxU1TxxxxxxxxKSJwHYOpK37xxxxxxxxrEHAkU91xxxxxxxxxFrrJ06xxx
pollingIntervalVulnerabilityMinStringYes5 minutesTime interval (in minutes) after which the source will check for new data for API.
Default: 5 minutess
Minimum: 5 minutes
Maximum: 60 minutes
pollingIntervalAddressesHourStringYes24 hoursTime interval (in hours) after which the source will check for new data for API.
Default: 24 hours
Minimum: 12 hours
Maximum: 24 hours
pollingIntervalZonesHourStringYes24 hoursTime interval (in hours) after which the source will check for new data for API.
Default: 24 hours
Minimum: 12 hours
Maximum: 24 hours
pollingIntervalAssetsHourStringYes24 hoursTime interval (in hours) after which the source will check for new data for API.
Default: 24 hours
Minimum: 12 hours
Maximum: 24 hours
collectAddressDetailsBooleanNoTrueSpecify if you need to collect the address details.
collectZoneDetailsBooleanNoTrueSpecify if you need to collect the zone details.
collectDeviceDetailsBooleanNoTrueSpecify if you need to collect the assets details.
collectVulnerabilityDetailsBooleanNoTrueSpecify if you need to collect the vulnerability details.

JSON example

{
"API.version": "v1",
"source": {
"config": {
"name": "Dragos",
"requestEndpoint": "https://sumologic-dragos.cxc.dragos.cloud/",
"apiID": "036fxxxx-b642-xxxx-99d3-fcxxxx2exxxx",
"apiSecret": "xxxU1TxxxxxxxxKSJwHYOpK37xxxxxxxxrEHAkU91xxxxxxxxxFrrJ06xxx",
"collectVulnerability": true,
"collectAddress": true,
"collectZone": false,
"collectAsset": false,
"pollingIntervalVulnerabilityMin": "24h",
"pollingIntervalAddressesHour": "5h"
},
"schemaRef": {
"type": "Dragos"
},
"sourceType": "Universal"
}
}
Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "dragos-source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Dragos"
}
config = jsonencode({
"name": "Dragos",
"requestEndpoint": "https://sumologic-dragos.cxc.dragos.cloud/",
"apiID": "036fxxxx-b642-xxxx-99d3-fcxxxx2exxxx",
"apiSecret": "xxxU1TxxxxxxxxKSJwHYOpK37xxxxxxxxrEHAkU91xxxxxxxxxFrrJ06xxx",
"collectVulnerability": true,
"collectAddress": true,
"collectZone": false,
"collectAsset": false,
"pollingIntervalVulnerabilityMin": "24h",
"pollingIntervalAddressesHour": "5h"
})
}
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.