扫描报告
10 /100
openai-agent-sdk
Build multi-agent AI systems with OpenAI Agents SDK. Create, orchestrate, and manage AI agents with tools, handoffs, guardrails, and tracing.
This skill is a pure documentation package for the OpenAI Agents SDK containing only example code and templates — no malicious behavior, no runtime code, and no exfiltration mechanisms.
可以安装
Safe to use. The skill declares no filesystem, network, shell, or credential access. Users should be aware that `eval()` in the example calculator tool is intentionally exposed for demonstration purposes only.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | API key placeholder strings in documentation | SKILL.md:174 |
| 低危 | eval() usage in example calculator tool | examples/tools_example.py:30 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | No file read/write operations in any file |
| 网络访问 | NONE | NONE | — | No HTTP requests or network calls; external URLs are only in documentation links |
| 命令执行 | NONE | NONE | — | No subprocess, os.system, or shell execution calls |
| 环境变量 | NONE | NONE | — | No os.environ access or credential enumeration |
| 技能调用 | NONE | NONE | — | No cross-skill invocation code |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database connections |
2 高危 3 项发现
高危 API 密钥 疑似硬编码凭证
API_KEY="sk-your-api-key-here" SKILL.md:174 高危 API 密钥 疑似硬编码凭证
api_key="your-anthropic-key" SKILL.md:279 中危 外部 URL 外部 URL
https://openai.github.io/openai-agents-python/ README.md:54 目录结构
7 文件 · 22.2 KB · 962 行 Markdown 2f · 664L
Python 5f · 298L
├─
▾
examples
│ ├─
basic_agent.py
Python
│ ├─
handoffs_example.py
Python
│ └─
tools_example.py
Python
├─
▾
templates
│ ├─
agent_template.py
Python
│ └─
multi_agent_template.py
Python
├─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
openai-agents | >=0.1.0 | pip | 否 | No pinned upper bound; should pin to a specific version in production |
安全亮点
✓ No filesystem access or file operations of any kind
✓ No network requests, IP connections, or data exfiltration
✓ No shell execution, subprocess, or command injection vectors
✓ No credential harvesting or environment variable enumeration
✓ No hidden functionality — all code is either documented examples or templates
✓ No suspicious encoding patterns (base64, hex, rot13)
✓ No download-and-execute patterns (curl|bash, wget|sh)
✓ No .env files, SSH keys, or sensitive path access
✓ Skill declares no permissions — aligns with actual implementation
✓ All external URLs are legitimate documentation links to openai.github.io and github.com