Scan Report
0 /100
Express Logistics Track - 快递物流查询
查快递物流轨迹与签收状态,支持自动识别公司与顺丰等校验
快递物流查询技能,代码与文档一致,无越权操作,无阴影功能
Safe to install
无需修改,可安全使用
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Info | 示例凭证占位符 | SKILL.md:21 |
| Info | 依赖无版本锁定 | express.py:8 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | SKILL.md声明仅读取脚本,无文件写入操作 |
| Network | READ | READ | ✓ Aligned | express.py:13-14 仅调用声明的 api.jisuapi.com 域名 |
| Shell | NONE | NONE | — | 代码无subprocess调用,SKILL.md明确警告避免shell注入 |
| Environment | READ | READ | ✓ Aligned | express.py:119 仅读取JISU_API_KEY,无敏感信息遍历 |
1 High 6 findings
High API Key 疑似硬编码凭证
API_KEY="your_appkey_here" SKILL.md:21 Medium External URL 外部 URL
https://www.jisuapi.com/ SKILL.md:9 Medium External URL 外部 URL
https://www.jisuapi.com/api/express SKILL.md:14 Medium External URL 外部 URL
https://api.jisuapi.com/express/static/images/logo/80/yunda.png SKILL.md:95 Medium External URL 外部 URL
https://api.jisuapi.com/express/query express.py:13 Medium External URL 外部 URL
https://api.jisuapi.com/express/type express.py:14 File Tree
2 files · 10.2 KB · 327 lines Markdown 1f · 166L
Python 1f · 161L
├─
express.py
Python
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
requests | * | pip | No | 无版本锁定,但为标准HTTP库 |
Security Positives
✓ 文档与代码实现完全一致,无阴影功能
✓ 无shell执行、subprocess调用
✓ 网络请求仅访问声明的JisuAPI域名
✓ JSON输入解析规范,无命令注入风险
✓ 环境变量仅访问必需的JISU_API_KEY
✓ 代码逻辑简洁清晰,易于审计
✓ SKILL.md明确警告避免shell注入,体现安全意识