扫描报告
5 /100
send-file
发送文件到消息平台(飞书、Telegram、Discord等)
Legitimate file-sending skill for Feishu with properly declared permissions and no malicious behavior.
可以安装
Skill is safe for use. No security concerns identified.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | Python reads files for upload only; shell script validates file existence |
| 网络访问 | READ | READ | ✓ 一致 | Makes POST requests to open.feishu.cn API endpoints |
| 环境变量 | READ | READ | ✓ 一致 | Reads FEISHU_APP_ID and FEISHU_APP_SECRET from os.environ |
| 命令执行 | NONE | NONE | — | No subprocess or shell execution observed |
| 技能调用 | NONE | NONE | — | No cross-skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database access |
4 项发现
中危 外部 URL 外部 URL
https://open.feishu.cn/app SKILL.md:33 中危 外部 URL 外部 URL
https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal SKILL.md:133 中危 外部 URL 外部 URL
https://open.feishu.cn/open-apis/im/v1/files SKILL.md:141 中危 外部 URL 外部 URL
https://open.feishu.cn/open-apis/im/v1/messages?receive_id_type=open_id SKILL.md:150 目录结构
3 文件 · 13.4 KB · 476 行 Markdown 1f · 244L
Python 1f · 156L
Shell 1f · 76L
├─
▾
scripts
│ ├─
send_feishu_file.py
Python
│ └─
send_file.sh
Shell
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
requests | * | pip | 否 | Version not pinned but no security impact in this context |
安全亮点
✓ All credential access (FEISHU_APP_ID, FEISHU_APP_SECRET) is properly declared in SKILL.md
✓ Network requests are exclusively to legitimate Feishu API endpoints (open.feishu.cn)
✓ No credential exfiltration - tokens stay local for API authentication only
✓ File access is limited to reading files for upload, no sensitive path access
✓ No obfuscation, base64 encoding, or anti-analysis techniques
✓ No subprocess or shell execution in Python code
✓ Shell script is a simple file validation utility with no malicious intent
✓ Clean, readable code with proper error handling