扫描报告
20 /100
company-information
企业舆情监测与风险预警技能 - Enterprise sentiment monitoring and risk early warning skill
Legitimate enterprise sentiment monitoring skill with minor concerns about hardcoded IP address and broad API endpoint documentation.
可以安装
Consider using domain name instead of hardcoded IP for API endpoint. Verify FEEDAX API provider legitimacy before production use.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 中危 | Hardcoded IP Address | scripts/query_company_information.py:33 |
| 低危 | API Key Configuration Flexibility | scripts/query_company_information.py:340 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 网络访问 | READ | READ | ✓ 一致 | requests.post() to FEEDAX API |
| 文件系统 | WRITE | WRITE | ✓ 一致 | generate_csv() and generate_description() functions write CSV/MD files |
| 命令执行 | WRITE | WRITE | ✓ 一致 | SKILL.md documents CLI usage with python3 scripts/ |
| 环境变量 | READ | READ | ✓ 一致 | os.environ.get('FEEDAX_API_KEY') - only reads provided API key |
| 技能调用 | NONE | NONE | — | No skill invocation detected |
1 高危 8 项发现
高危 IP 地址 硬编码 IP 地址
221.6.15.90 README.md:225 中危 外部 URL 外部 URL
https://blog.gitee.com README.en.md:32 中危 外部 URL 外部 URL
https://gitee.com/explore README.en.md:33 中危 外部 URL 外部 URL
https://gitee.com/gvp README.en.md:34 中危 外部 URL 外部 URL
https://gitee.com/help README.en.md:35 中危 外部 URL 外部 URL
https://gitee.com/gitee-stars/ README.en.md:36 中危 外部 URL 外部 URL
https://www.feedax.cn README.md:21 中危 外部 URL 外部 URL
http://221.6.15.90:18011 scripts/query_company_information.py:35 目录结构
4 文件 · 43.2 KB · 1358 行 Markdown 3f · 843L
Python 1f · 515L
├─
▾
scripts
│ └─
query_company_information.py
Python
├─
README.en.md
Markdown
├─
README.md
Markdown
└─
SKILL.md
Markdown
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
requests | * | pip | 否 | Version not pinned - consider pinning for reproducibility |
安全亮点
✓ Code is readable and matches documented functionality
✓ No credential exfiltration - API keys only used for authentication
✓ No reverse shell, C2, or data theft patterns detected
✓ Filesystem access limited to output directory (CSV/MD files)
✓ No hidden functionality or suspicious code patterns
✓ Uses standard requests library for HTTP calls
✓ Proper error handling with timeout and exception management