Scan Report
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.
Safe to install
Approve for use. No security concerns identified.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Network | READ | READ | ✓ Aligned | urllib.request.Request() to gateway.maton.ai |
| Environment | READ | READ | ✓ Aligned | os.environ.get('MATON_API_KEY') |
| Filesystem | NONE | NONE | — | No file read/write operations in scripts |
| Shell | NONE | NONE | — | No subprocess calls detected |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
| Skill Invoke | NONE | NONE | — | No skill invocation |
13 findings
Medium External URL 外部 URL
https://ctrl.maton.ai/connections SKILL.md:27 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/ SKILL.md:39 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me SKILL.md:42 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$top=5 SKILL.md:43 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/mailFolders/Inbox/messages?$top=10 SKILL.md:44 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$top=5&$select=subject SKILL.md:62 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$top=10&$filter=isRead SKILL.md:68 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/mailFolders/Inbox/messages?$top=10&$select=subject SKILL.md:74 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages?$search= SKILL.md:80 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages/ SKILL.md:88 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/messages SKILL.md:116 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0/me/sendMail SKILL.md:138 Medium External URL 外部 URL
https://gateway.maton.ai/outlook/v1.0 scripts/outlook_mail.py:10 File Tree
5 files · 16.1 KB · 666 lines 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
Security Positives
✓ 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