可信 — 风险评分 5/100
上次扫描:1 天前 重新扫描
5 /100
agentmail
API-first email platform for AI agents - create inboxes, send/receive emails, and handle webhooks
AgentMail is a legitimate email API platform for AI agents with no malicious behavior. All operations are properly declared and documented, using the official agentmail SDK for API communication.
技能名称agentmail
分析耗时35.4s
引擎pi
可以安装
This skill is safe to use. Ensure AGENTMAIL_API_KEY is properly secured and be aware of the documented prompt injection risk from untrusted incoming emails.

安全发现 1 项

严重性 安全发现 位置
低危
Prompt Injection Risk Acknowledged 敏感访问
SKILL.md explicitly documents the prompt injection risk from incoming email webhooks and provides mitigation guidance through allowlist filtering.
⚠️ Risk: Incoming email webhooks expose a prompt injection vector
→ Follow the documented allowlist pattern to mitigate this risk.
SKILL.md:70
资源类型声明权限推断权限状态证据
文件系统 NONE READ ✓ 一致 send_email.py:66 reads attachments only
网络访问 READ READ ✓ 一致 SDK makes HTTPS calls to api.agentmail.to
命令执行 NONE NONE No subprocess or shell commands
环境变量 READ READ ✓ 一致 Reads AGENTMAIL_API_KEY only
技能调用 NONE NONE No skill invocation detected
剪贴板 NONE NONE No clipboard access
浏览器 NONE NONE No browser automation
数据库 NONE NONE No database access
25 项发现
🔗
中危 外部 URL 外部 URL
https://console.agentmail.to
SKILL.md:20
🔗
中危 外部 URL 外部 URL
https://your-domain.com/webhook
SKILL.md:75
🔗
中危 外部 URL 外部 URL
https://api.agentmail.to/v0
references/API.md:3
🔗
中危 外部 URL 外部 URL
https://your-app.com/webhook/support
references/EXAMPLES.md:69
🔗
中危 外部 URL 外部 URL
https://your-app.com/webhook/tasks
references/EXAMPLES.md:225
🔗
中危 外部 URL 外部 URL
https://your-app.com/tasks/
references/EXAMPLES.md:306
🔗
中危 外部 URL 外部 URL
https://ngrok.com/
references/WEBHOOKS.md:87
🔗
中危 外部 URL 外部 URL
https://abc123.ngrok-free.app
references/WEBHOOKS.md:136
🔗
中危 外部 URL 外部 URL
https://abc123.ngrok-free.app/webhook
references/WEBHOOKS.md:151
🔗
中危 外部 URL 外部 URL
https://myapp.com/webhook
scripts/setup_webhook.py:7
📧
提示 邮箱 邮箱地址
[email protected]
SKILL.md:36
📧
提示 邮箱 邮箱地址
[email protected]
SKILL.md:84
📧
提示 邮箱 邮箱地址
[email protected]
SKILL.md:89
📧
提示 邮箱 邮箱地址
[email protected]
SKILL.md:102
📧
提示 邮箱 邮箱地址
[email protected]
references/API.md:35
📧
提示 邮箱 邮箱地址
[email protected]
references/API.md:159
📧
提示 邮箱 邮箱地址
[email protected]
references/EXAMPLES.md:297
📧
提示 邮箱 邮箱地址
[email protected]
references/EXAMPLES.md:404
📧
提示 邮箱 邮箱地址
[email protected]
references/EXAMPLES.md:428
📧
提示 邮箱 邮箱地址
[email protected]
references/EXAMPLES.md:428
📧
提示 邮箱 邮箱地址
[email protected]
references/EXAMPLES.md:440
📧
提示 邮箱 邮箱地址
[email protected]
references/EXAMPLES.md:497
📧
提示 邮箱 邮箱地址
[email protected]
references/WEBHOOKS.md:18
📧
提示 邮箱 邮箱地址
[email protected]
scripts/check_inbox.py:7
📧
提示 邮箱 邮箱地址
[email protected]
scripts/send_email.py:6

目录结构

11 文件 · 52.5 KB · 1814 行
Markdown 4f · 1219L Python 6f · 590L JSON 1f · 5L
├─ 📁 references
│ ├─ 📝 API.md Markdown 229L · 4.3 KB
│ ├─ 📝 EXAMPLES.md Markdown 508L · 13.8 KB
│ └─ 📝 WEBHOOKS.md Markdown 294L · 7.2 KB
├─ 📁 scripts
│ ├─ 🐍 check_inbox.py Python 243L · 9.3 KB
│ ├─ 🐍 create_hammer_inbox.py Python 19L · 681 B
│ ├─ 🐍 inspect_create_inbox.py Python 13L · 457 B
│ ├─ 🐍 list_inboxes.py Python 23L · 651 B
│ ├─ 🐍 send_email.py Python 113L · 3.9 KB
│ └─ 🐍 setup_webhook.py Python 179L · 6.0 KB
├─ 📋 _meta.json JSON 5L · 128 B
└─ 📝 SKILL.md Markdown 188L · 5.9 KB

依赖分析 3 项

包名版本来源已知漏洞备注
agentmail * pip Core SDK - version not pinned, verify package integrity
python-dotenv * pip Environment variable loading - optional dependency
flask * pip Test server only - not used in production workflows

安全亮点

✓ All scripts use the official agentmail SDK with no direct HTTP calls
✓ No credential harvesting - only reads AGENTMAIL_API_KEY from environment
✓ No base64-encoded shell commands or obfuscation detected
✓ File access is limited to email attachments only
✓ Network calls go to documented API endpoint (api.agentmail.to)
✓ No reverse shells, C2, or data exfiltration detected
✓ Prompt injection risk is clearly documented with mitigation strategies
✓ Webhook security includes signature verification examples