扫描报告
5 /100
outlook
Outlook / Microsoft mail integration via Maton managed OAuth and Microsoft Graph-compatible gateway
Outlook integration skill with clean implementation; all network operations routed through documented Maton gateway with no credential exfiltration or hidden functionality.
可以安装
Approve for use. No security concerns identified.
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 网络访问 | READ | READ | ✓ 一致 | urllib.request.Request() to gateway.maton.ai |
| 环境变量 | READ | READ | ✓ 一致 | os.environ.get('MATON_API_KEY') |
| 文件系统 | NONE | NONE | — | No file read/write operations in scripts |
| 命令执行 | NONE | NONE | — | No subprocess calls detected |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database access |
| 技能调用 | NONE | NONE | — | No skill invocation |
13 项发现
中危 外部 URL 外部 URL
https://ctrl.maton.ai/connections SKILL.md:27 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/ SKILL.md:39 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me SKILL.md:42 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$top=5 SKILL.md:43 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/mailFolders/Inbox/messages?$top=10 SKILL.md:44 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$top=5&$select=subject SKILL.md:62 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$top=10&$filter=isRead SKILL.md:68 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/mailFolders/Inbox/messages?$top=10&$select=subject SKILL.md:74 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$search= SKILL.md:80 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages/ SKILL.md:88 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages SKILL.md:116 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/sendMail SKILL.md:138 中危 外部 URL 外部 URL
https://gateway.maton.ai/outlook/v1.0 scripts/outlook_mail.py:10 目录结构
5 文件 · 16.1 KB · 666 行 Markdown 2f · 434L
Python 2f · 221L
JSON 1f · 11L
├─
▾
references
│ └─
graph-examples.md
Markdown
├─
▾
scripts
│ ├─
outlook_mail.py
Python
│ └─
outlook_send.py
Python
├─
_meta.json
JSON
└─
SKILL.md
Markdown
安全亮点
✓ Uses only Python standard library (urllib.request, json, argparse) - no external dependencies
✓ All network requests limited to documented Maton gateway (gateway.maton.ai)
✓ MATON_API_KEY used only for local authentication to gateway, never exfiltrated
✓ No subprocess, shell execution, or file system operations
✓ Read-only scripts (outlook_mail.py) contain only GET requests
✓ Write scripts (outlook_send.py) clearly documented with user confirmation requirements
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ No base64 encoding, eval, or obfuscation patterns
✓ Clean separation between read-only and write operations
✓ Consistent with declared capabilities in SKILL.md