挂起进程edit

挂起运行 Elastic Defend 的主机上的进程。

您必须具有 进程操作 权限 以及至少一个 Enterprise 许可证才能执行此操作。

请求 URLedit

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

请求主体edit

包含以下字段的 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,但不能同时提供两者

示例请求edit

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

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

响应代码edit

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

响应有效负载edit

包含 id 的 JSON 对象,该 ID 指向提交的操作。

示例响应edit

{
  "data": {
    "id": "233db9ea-6733-4849-9226-5a7039c7161d",
    "agents": ["ed518850-681a-4d60-bb98-e22640cae2a8"],
    "command": "suspend-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": "suspend the process",
    "parameters": {
      "entity_id": "abc123"
    }
  }
}