可信 — 风险评分 5/100
上次扫描:2 天前 重新扫描
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.
技能名称outlook
分析耗时25.1s
引擎pi
可以安装
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 179L · 3.1 KB
├─ 📁 scripts
│ ├─ 🐍 outlook_mail.py Python 114L · 3.4 KB
│ └─ 🐍 outlook_send.py Python 107L · 2.7 KB
├─ 📋 _meta.json JSON 11L · 254 B
└─ 📝 SKILL.md Markdown 255L · 6.7 KB

安全亮点

✓ 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