Scan Report
5 /100
Amazon
Analyze Amazon workflows with JustOneAPI, including product Details, product Top Reviews, and best Sellers across 4 operations.
This is a straightforward Amazon API wrapper skill that makes GET requests to JustOneAPI. No malicious patterns, obfuscation, or credential harvesting were detected.
Safe to install
No action needed. The skill is safe to use. Consider passing the token via environment variable instead of CLI argument for better operational security.
Findings 1 items
| Severity | Finding | Location |
|---|---|---|
| Low | API token visible in process arguments Sensitive Access | bin/run.mjs:7 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | No file system operations in bin/run.mjs |
| Network | READ | READ | ✓ Aligned | bin/run.mjs:107 - fetch(url, requestInit) only to api.justoneapi.com |
| Shell | NONE | NONE | — | No subprocess, exec, or shell command execution |
| Environment | NONE | NONE | — | No environment variable access in code |
| Skill Invoke | NONE | NONE | — | No nested skill invocation |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
2 findings
Medium External URL 外部 URL
https://api.justoneapi.com SKILL.md:5 Medium External URL 外部 URL
https://amazon.com/s?node=172282 bin/run.mjs:109 File Tree
4 files · 36.5 KB · 1139 lines JavaScript 1f · 533L
JSON 1f · 331L
Markdown 2f · 275L
├─
▾
bin
│ └─
run.mjs
JavaScript
├─
▾
generated
│ ├─
operations.json
JSON
│ └─
operations.md
Markdown
└─
SKILL.md
Markdown
Security Positives
✓ No shell execution or subprocess calls detected
✓ No obfuscation techniques (base64, eval, atob) found
✓ No credential harvesting or environment variable iteration
✓ No sensitive file/path access (~/.ssh, .env, etc.)
✓ No remote code execution patterns
✓ No hidden functionality - documentation matches implementation
✓ All 4 operations use only GET requests with query parameters
✓ No external dependencies - uses only Node.js built-in fetch API
✓ Clean, straightforward API wrapper with proper error handling