Skip to main content
Skip table of contents

Add Tactics & Techniques To Events

Apply tactics/techniques to events

Implementation

System

Command Category

Cyber Utility

Tags

EVENT EVENT TACTICS & TECHNIQUES

Inputs

Parameter Name

Required/Optional

Description

Sample Data

Event IDs

Optional

The ID of events to which the tactics and techniques will be added

[

60250,

60251

]

Tactics

Optional

Tactics to set to the specified events

[

"Initial Access",

"TA0002",

"TA0003"

]

Techniques

Optional

Techniques to set to the specified events

[

"Valid Accounts: Cloud Accounts",

"T1569",

"Traffic Signaling: Port Knocking"

]

Output

Return Data

The returned result of this command. If some required parameters are not defined, this returned data could be empty. The returned result can be passed down directly to a subsequent command in playbooks.

SAMPLE DATA

JSON
Successful
Context Data

The response data from the utility command.

SAMPLE DATA

JSON
[
    {
        "EventId": 60250,
        "techniques": [
            {
                "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Persistence",
                "TechniqueId": "C395F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "Traffic Signaling: Port Knocking"
            },
            {
                "TacticId": "7DF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Initial Access",
                "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "Valid Accounts: Cloud Accounts"
            },
            {
                "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Persistence",
                "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "Valid Accounts: Cloud Accounts"
            },
            {
                "TacticId": "7EF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Execution",
                "TechniqueId": "0D96F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "System Services"
            }
        ]
    },
    {
        "EventId": 60251,
        "techniques": [
            {
                "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Persistence",
                "TechniqueId": "C395F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "Traffic Signaling: Port Knocking"
            },
            {
                "TacticId": "7DF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Initial Access",
                "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "Valid Accounts: Cloud Accounts"
            },
            {
                "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Persistence",
                "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "Valid Accounts: Cloud Accounts"
            },
            {
                "TacticId": "7EF86A9E-205A-E911-80CE-64006A25830F",
                "TacticName": "Execution",
                "TechniqueId": "0D96F016-2E88-EB11-B54B-1062E50C63BF",
                "TechniqueName": "System Services"
            }
        ]
    }
]

Remote Command API

The D3 command API allows you to send requests to D3 SOAR to execute this utility command via REST API.

Request

POST

CODE
{
  "Username": "Admin",
  "Site": "Security Operations",
  "CommandParams": {
    "Event IDs": [
      60250,
      60251
    ],
    "Tactics": [
      "Initial Access",
      "TA0002",
      "TA0003"
    ],
    "Techniques": [
      "Valid Accounts: Cloud Accounts",
      "T1569",
      "Traffic Signaling: Port Knocking"
    ]
  }
}

Headers

Please refer to the page Webhook Configuration Guide - Authentication Method: API Keys for more details.

Request Body

JSON
{
  "Username": <Username here>,
  "Site": <Site here>,
  "CommandParams": {
    "Event IDs": <Event IDs here>,
    "Tactics": <Tactics here>,
    "Techniques": <Techniques here>
  }
}

Body Parameters

Parameter Name

Type

Required/Optional

Description

Username

String

Required

The username of your D3 SOAR account.

Site

String

Required

The D3 SOAR site to run the remote command.

Event IDs

Number Array

Optional

The ID of events to which the tactics and techniques will be added

Tactics

Text Array

Optional

Tactics to set to the specified events

Techniques

Text Array

Optional

Techniques to set to the specified events

Sample Request

SAMPLE DATA

JSON
{
  "Username": "Admin",
  "Site": "Security Operations",
  "CommandParams": {
    "Event IDs": [
      60250,
      60251
    ],
    "Tactics": [
      "Initial Access",
      "TA0002",
      "TA0003"
    ],
    "Techniques": [
      "Valid Accounts: Cloud Accounts",
      "T1569",
      "Traffic Signaling: Port Knocking"
    ]
  }
}

Response

Response Fields

Field Name

Type

Description

error

Text

The error message if the API request has failed.

returnData

Text

The return data from the API request.

contextData

JSON Array

The context data from the API request.

Sample Response

JSON
{
    "error": "",
    "returnData": "Successful",
    "contextData": [
        {
            "EventId": 60250,
            "techniques": [
                {
                    "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Persistence",
                    "TechniqueId": "C395F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "Traffic Signaling: Port Knocking"
                },
                {
                    "TacticId": "7DF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Initial Access",
                    "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "Valid Accounts: Cloud Accounts"
                },
                {
                    "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Persistence",
                    "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "Valid Accounts: Cloud Accounts"
                },
                {
                    "TacticId": "7EF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Execution",
                    "TechniqueId": "0D96F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "System Services"
                }
            ]
        },
        {
            "EventId": 60251,
            "techniques": [
                {
                    "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Persistence",
                    "TechniqueId": "C395F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "Traffic Signaling: Port Knocking"
                },
                {
                    "TacticId": "7DF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Initial Access",
                    "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "Valid Accounts: Cloud Accounts"
                },
                {
                    "TacticId": "7FF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Persistence",
                    "TechniqueId": "F095F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "Valid Accounts: Cloud Accounts"
                },
                {
                    "TacticId": "7EF86A9E-205A-E911-80CE-64006A25830F",
                    "TacticName": "Execution",
                    "TechniqueId": "0D96F016-2E88-EB11-B54B-1062E50C63BF",
                    "TechniqueName": "System Services"
                }
            ]
        }
    ]
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.