General GET calls may retrieve sensitive Lark data accessible to the active credentials
Source references: 5The Skill permits native GET requests to discovered endpoints and instructs the agent to present its results. The confirmation rule visible in this file covers only POST, PUT, and DELETE; there is no visible per-request confirmation, field filtering, or redaction requirement for GET calls that read contacts, messages, or other sensitive content. The external `lark-shared` file may add rules, but they cannot be verified from this evidence.
If the chosen endpoint contains personal information, messages, or internal business data, its response may enter the agent context and be shown to the current chat user, widening exposure of that data.
The source provides a generic GET mechanism, and the visible per-operation confirmation rule names only POST, PUT, and DELETE. However, it supplies no concrete GET endpoint for contacts, messages, or other sensitive data, and it does not say GET requests run automatically or that raw responses are shown to the user. It also requires security rules from `lark-shared`, which are absent from the evidence. A general read capability bounded by the active credentials is supported, but these lines alone do not establish that sensitive data would be read or disclosed without authorization or redaction. Before use, users can request the exact endpoint, returned fields, required scopes, and output handling.
This assessment concerns the code and conditions shown, not proof that harm has occurred.```bash# GET 请求lark-cli api GET /open-apis/<path> --params '{"key":"value"}'# POST 请求lark-cli api POST /open-apis/<path> --data '{"key":"value"}'Show 4 other places
## 输出规范向用户呈现挖掘结果时,按以下格式组织:1. **API 名称与功能**:一句话描述2. **HTTP 方法与路径**:`METHOD /open-apis/...`3. **关键参数**:列出必填和常用可选参数4. **所需权限**:scope 列表5. **调用示例**:给出 `lark-cli api` 的完整命令6. **注意事项**:频率限制、特殊约束等- **写入/删除类 API**(POST/PUT/DELETE)调用前必须确认用户意图- 建议先用 `--dry-run` 预览请求(如支持)- 不要猜测 API 路径或参数——必须从文档中获取确认> **前置条件:** 先阅读 [`../lark-shared/SKILL.md`](../lark-shared/SKILL.md) 了解认证、身份切换和安全规则。1. **API 名称与功能**:一句话描述2. **HTTP 方法与路径**:`METHOD /open-apis/...`3. **关键参数**:列出必填和常用可选参数4. **所需权限**:scope 列表5. **调用示例**:给出 `lark-cli api` 的完整命令6. **注意事项**:频率限制、特殊约束等