Scan Report
15 /100
upload-skill
Create and manage test payment links (one-time, recurring, payment plans, multiple products, custom plans, pay-what-you-want).
A test payment link creation skill with minor documentation inconsistencies but no malicious behavior observed.
Safe to install
Fix the hardcoded API key to use the declared TEST_API_KEY environment variable for consistency. No security action required beyond documentation alignment.
Findings 3 items
| Severity | Finding | Location |
|---|---|---|
| Low | Hardcoded credential instead of declared environment variable Doc Mismatch | scripts/test-scrpt.js:2 |
| Low | Extensive validation rules in SKILL.md not implemented Doc Mismatch | SKILL.md:1 |
| Info | Localhost-only network communication Sensitive Access | scripts/test-scrpt.js:4 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | NONE | — | No file operations in test-scrpt.js |
| Network | READ | READ | ✓ Aligned | test-scrpt.js:18 uses fetch to localhost:4000 |
| Shell | NONE | NONE | — | No shell/subprocess execution found |
| Environment | READ | NONE | ✓ Aligned | SKILL.md declares TEST_API_KEY env but test-scrpt.js:2 hardcodes 'abc' |
| Skill Invoke | NONE | NONE | — | No skill invocation detected |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database operations |
1 findings
Medium External URL 外部 URL
https://test.com SKILL.md:9 File Tree
2 files · 7.3 KB · 308 lines Markdown 1f · 229L
JavaScript 1f · 79L
├─
▾
scripts
│ └─
test-scrpt.js
JavaScript
└─
SKILL.md
Markdown
Security Positives
✓ No shell execution or command injection vectors
✓ No credential harvesting or exfiltration mechanisms
✓ No obfuscation or anti-analysis techniques
✓ No access to sensitive filesystem paths (~/.ssh, ~/.aws, .env)
✓ No base64-encoded payloads or eval usage
✓ No remote script execution (curl|bash, wget|sh)
✓ No supply chain risks - only uses Node.js built-in fetch
✓ Localhost-only network traffic prevents data exfiltration
✓ Input validation present for required fields