Installation

Prerequisites

  • Director Fabric v1.4.0 or later

  • Director Console v1.6.0 or later

  • LogPoint v6.12.2 or later

  • Threat Intelligence v5.0.0 or later

Uploading the StixTaxii Application to the Fabric Storage

Private Storage

You can upload the StixTaxii application to a private storage in the Fabric Storage using the Upload - Upload API.

Endpoint URL:

https://api-server-host-name/configapi/Uploads/{pool_UUID}/

Method:

POST

Header:

FIELD

DESCRIPTION

file_name

Name of the StixTaxii pak file.

Content-Type

Content type of the StixTaxii pak file. It must be (application/octet-stream).

Parameters:

FIELD

TYPE

DESCRIPTION

REQUIRED

file

[Object]

The StixTaxii pak file to be uploaded.

Mandatory

Success Response:

{
    "status": "Success",
    "message": "StixTaxii_6.0.0.pak successfully uploaded in the private storage. "
}

Public Storage

You can upload the StixTaxii application to a public storage in the Fabric Storage using the Upload - UploadPublic files API.

Endpoint URL:

https://api-server-host-name/configapi/Uploads/PublicUpload

Method:

POST

Header:

FIELD

DESCRIPTION

file_name

Name of the StixTaxii pak file.

Content-Type

Content type of the StixTaxii pak file. It must be (application/octet-stream).

Parameters:

FIELD

TYPE

DESCRIPTION

REQUIRED

file

[Object]

The StixTaxii pak file to be uploaded.

Mandatory

Success Response:

{
    "status": "Success",
    "message": "StixTaxii_6.0.0.pak successfully uploaded in the public storage. "
}

Listing the StixTaxii Application in the Fabric Storage

Private Storage

You can list the StixTaxii application file uploaded in the private storage using the Upload - List API.

Endpoint URL:

https://api-server-host-name/configapi/Uploads/{pool_UUID}/list

Method:

GET

Success Response:

[
    "StixTaxii_6.0.0.pak"
]

Public Storage

You can list the StixTaxii application file uploaded in the public storage using the Upload - ListPublic API.

Endpoint URL:

https://api-server-host-name/configapi/Uploads/list

Method:

GET

Success Response:

[
    "StixTaxii_6.0.0.pak"
]

Installing the StixTaxii Application in LogPoint

You can install the StixTaxii application in LogPoint using the Upload - Install API. You must upload the application package to the Fabric Storage before the installation.

Endpoint URL:

https://api-server-host-name/configapi/Uploads/{pool_UUID}/{logpoint_identifier}/install

Method:

POST

Parameters:

FIELD

LABEL IN UI

TYPE

DESCRIPTION

REQUIRED

application_type

String

Type of the application. Must be Application.

Mandatory

file_name

File

String

Name of the application file.

Mandatory

file_location

String

Location of the application file. Can be either private or public.

Mandatory

Request Example:

{
    "data": {
        "application_type": "Application",
        "file_name": "stixtaxii_6.0.0.pak",
        "file_location": "private"
    }
}

Success Response:

{
    "status": "Success",
    "message": "/monitorapi/{pool_UUID}/{logpoint_identifier}/orders/{request_id}"
}

Helpful?

We are glad this guide helped.


Please don't include any personal information in your comment

Contact Support