🛡️

Hunt Ioc

Verified

@elastic/hunt-ioc

Hunt for an Indicator of Compromise (IP, hash, domain)

Usage

RUN SKILL hunt_ioc()

With parameters:

RUN SKILL hunt_ioc WITH ioc = 'value'

Parameters

NameTypeDefaultDescription
iocSTRINGIOC value to hunt for (IP, hash, domain)

Returns

ARRAY— An array of matching documents

Example

-- Using curl
curl -u elastic-admin:elastic-password http://localhost:9200/_escript \
  -H "Content-Type: application/json" \
  -d '{"query": "RUN SKILL hunt_ioc()"}'

-- Response
{
  "result": [...],
  "_meta": {
    "execution_id": "abc123",
    "duration_ms": 45
  }
}