终止进程编辑

终止运行 Elastic Defend 的主机上的进程。

您必须具有 进程操作 特权,并且至少需要 Enterprise 许可证才能执行此操作。

请求 URL编辑

POST <kibana 主机>:<端口>/api/endpoint/action/kill_process

请求主体编辑

具有以下字段的 JSON 对象

名称 类型 描述 必需

endpoint_ids

数组 (字符串)

您要在此处发出此操作的端点的 ID。

agent_type

字符串

主机正在运行的 Agent 类型。可接受的值为

  • endpoint (默认)
  • sentinel_one (目前处于技术预览阶段)

alert_ids

数组 (字符串)

如果此操作与任何警报相关联,则可以在此处指定它们。该操作将在与指定警报相关联的所有情况下进行记录。

case_ids

数组 (字符串)

执行的操作将记录在其中的案例的 ID。

comment

字符串

将注释附加到此操作的日志。注释文本将显示在相关联的案例中。

parameters.pid

数字

要终止的进程的进程 ID (PID)。

是,必须提供 parameters.pidparameters.entity_id,但不能同时提供。

parameters.entity_id

字符串

要终止的进程的实体 ID。

是,必须提供 parameters.pidparameters.entity_id,但不能同时提供。

示例请求编辑

终止具有 abc123 实体 ID 的进程,该进程位于 endpoint_id 值为 ed518850-681a-4d60-bb98-e22640cae2a8 的主机上,并注释为 terminate the process

POST /api/endpoint/action/kill_process
{
  "endpoint_ids": ["ed518850-681a-4d60-bb98-e22640cae2a8"],
  "parameters": {
    "entity_id": "abc123"
  },
  "comment": "terminate the process"
}

响应代码编辑

200
表示调用成功。
403
表示用户权限不足(需要 进程操作),或许可证级别不支持(需要最低 Enterprise 许可证)。
500
一般错误。响应消息将提供更多详细信息。

响应有效负载编辑

具有 id 的 JSON 对象,该对象引用提交的操作。

示例响应编辑

{
  "data": {
    "id": "233db9ea-6733-4849-9226-5a7039c7161d",
    "agents": ["ed518850-681a-4d60-bb98-e22640cae2a8"],
    "command": "kill-process",
    "agentType": "endpoint",
    "isExpired": false,
    "isCompleted": true,
    "wasSuccessful": true,
    "errors": [],
    "startedAt": "2022-07-29T19:08:49.126Z",
    "completedAt": "2022-07-29T19:09:44.961Z",
    "outputs": {
      "ed518850-681a-4d60-bb98-e22640cae2a8": {
        "type": "json",
        "content": {
          "key": "value"
        }
      }
    },
    "createdBy": "myuser",
    "comment": "terminate the process",
    "parameters": {
      "entity_id": "abc123"
    }
  }
}