Skip to main content

siem_ioc_explorers

Creates, updates, deletes, gets or lists a siem_ioc_explorers resource.

Overview

Namesiem_ioc_explorers
TypeResource
Iddatadog.security.siem_ioc_explorers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringUnique identifier for the response.
attributesobjectAttributes of the IoC Explorer list response.
typestringResponse type identifier.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_indicators_of_compromiseselectlimit, offset, query, sort[column], sort[order], ocsf, worked_by, triage_stateGet a list of indicators of compromise (IoCs) matching the specified filters.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.
limitinteger (int32)Number of results per page.
ocsfbooleanWhen true, return only OCSF field-based matches. When false, return regex/message-based matches.
offsetinteger (int32)Pagination offset.
querystringSearch/filter query (supports field:value syntax).
sort[column]stringSort column: score, first_seen_ts_epoch, last_seen_ts_epoch, indicator, indicator_type, signal_count, log_count, category, as_type.
sort[order]stringSort order: asc or desc.
triage_statestringFilter by triage state.
worked_bystringFilter indicators whose triage state was updated by a specific user identified by their handle.

SELECT examples

Get a list of indicators of compromise (IoCs) matching the specified filters.

SELECT
id,
attributes,
type
FROM datadog.security.siem_ioc_explorers
WHERE limit = '{{ limit }}'
AND offset = '{{ offset }}'
AND query = '{{ query }}'
AND sort[column] = '{{ sort[column] }}'
AND sort[order] = '{{ sort[order] }}'
AND ocsf = '{{ ocsf }}'
AND worked_by = '{{ worked_by }}'
AND triage_state = '{{ triage_state }}'
;