扫描报告
5 /100
amap-location
高德地图服务(路径规划、POI 搜索)
Legitimate AMap (高德地图) location service skill with clean code, standard HTTP requests to documented API endpoints, and no suspicious behavior detected.
可以安装
No action needed. The skill performs documented map services using standard Python libraries.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Hardcoded configuration path in documentation 敏感访问 | SKILL.md:10 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 网络访问 | READ | READ | ✓ 一致 | amap.py:21, static_map.py:29 - Only accesses restapi.amap.com |
| 环境变量 | READ | READ | ✓ 一致 | amap.py:17, static_map.py:25 - Reads AMAP_API_KEY only |
| 文件系统 | NONE | WRITE | ✓ 一致 | static_map.py:217 - Writes to configurable temp path (documented in SKILL.md) |
2 项发现
中危 外部 URL 外部 URL
https://restapi.amap.com/v3 amap.py:21 中危 外部 URL 外部 URL
https://restapi.amap.com/v3/staticmap static_map.py:29 目录结构
3 文件 · 21.7 KB · 733 行 Python 2f · 583L
Markdown 1f · 150L
├─
amap.py
Python
├─
SKILL.md
Markdown
└─
static_map.py
Python
依赖分析 1 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
Pillow | * | pip | 否 | Standard image library for map generation |
安全亮点
✓ Clean, readable Python code without obfuscation
✓ No shell execution, subprocess, or eval() calls
✓ Only accesses documented AMap API endpoints (restapi.amap.com)
✓ API key usage matches documentation - reads from environment only
✓ No credential harvesting or data exfiltration
✓ Standard urllib library for HTTP requests - no suspicious client behavior
✓ Image processing uses standard PIL library with clear purpose
✓ File writes limited to configurable temp output path
✓ Proper error handling with try/except blocks
✓ No hidden functionality - code matches stated purpose