Skip to main content

Abnormal Security Source

abnormal-security-logo

Abnormal Security is a behavioral AI-based email security platform that learns the behavior of every identity in a cloud email environment and analyzes the risk of every event to block the most sophisticated attacks.

The Abnormal Security integration ingests threat data and case data identified by the abnormal threat log and cases using the Abnormal Security API.

note

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

Data collected

Polling IntervalData
5 minThreat ID
5 minThreat Details
5 minCases

Setup

Vendor configuration

The Abnormal Security source requires you to provide an authentication token. To obtain the token, follow the steps below.

  1. Sign in to the Abnormal Security platform.
  2. In the Manage section, click on the Settings option.
  3. In the Settings section, click on the Integrations option.
    abnormal-settings
  4. Scroll down to the Additional Integrations section and click + Connect on the Abnormal REST API card to display an integration page for your organization.
    additional-integrations
  5. In the IP Safelist field, enter the IP addresses for your deployment.
    integrations
  6. Copy and save the Access token.

Source configuration

When you create an Abnormal Security 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 an Abnormal Security Source, follow the steps below:

  1. In Sumo Logic, select Manage Data > Collection > Collection
  2. On the Collection page, click Add Source next to a Hosted Collector.
  3. Search for and select Abnormal Security.
  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, it is ignored, also known as dropped.
  7. Enter the Access Token for authorization collected from the Abnormal Security platform.
  8. Additionally, if you like to collect the case data, enter cases in the Supported APIs to collect section. Threat data will be collected by default. But, if you like to collect only case data, you can unselect threats from the Supported APIs to collect section.
  9. 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":"Abnormal Security"}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"}
accessTokenStringYesnullAccess token used to retrieve abnormal threats.
datacollectionarrayYesthreatsList of APIs to fetch the data from.threats, cases

JSON example

{
"api.version": "v1",
"source": {
"config": {
"name": "ABCDEFGHIJKLMNOPQRSTUVWXYZABC",
"accessToken": "ABCDEFGH",
"description": "ABCDEFGHIJKLMNOPQRSTUV",
"category": "ABCDEFGHIJKLMNOPQRSTUVWX",
"dataCollection": [
"cases",
"threats"
]
},
"schemaRef": {
"type": "Abnormal Security"
},
"sourceType": "Security"
}
}

Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "Abnormal Security" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "Abnormal Security"
}
config = jsonencode({
"name": "ABCDEFGHIJKLMNOPQRSTUVWXYZABC",
"accessToken": "ABCDEFGH",
"description": "ABCDEFGHIJKLMNOPQRSTUV",
"category": "ABCDEFGHIJKLMNOPQRSTUVWX",
"dataCollection": [
"cases",
"threats"
]
},
)
}
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.