Scan Report
5 /100
amazon-review-workbook
Collect Amazon product reviews via Chrome CDP and export a 14-column delivery-ready workbook with optional DeepLX translation and model-assisted semantic tagging.
Legitimate Amazon review scraper using Chrome CDP; all operations are documented, scoped, and appropriate for the stated purpose.
Safe to install
No action needed. The skill is safe to use as documented.
Findings 5 items
| Severity | Finding | Location |
|---|---|---|
| Low | No dependency version pinning | scripts/amazon_review_workbook.py:1 |
| Info | Chrome CDP browser automation | scripts/amazon_review_workbook.py:657 |
| Info | External network calls only to user-configured DeepLX | scripts/deeplx_translate.py:95 |
| Info | No sensitive path access | scripts/amazon_review_workbook.py:1 |
| Info | No hidden functionality | scripts/amazon_review_workbook.py:637 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | Reads JSON/CSV/XLSX output files and local .env |
| Network | READ | READ | ✓ Aligned | Makes HTTP POST to user-configured DeepLX endpoint only |
| Shell | WRITE | WRITE | ✓ Aligned | Executes Python scripts via CLI; standard for script-based skills |
| Environment | NONE | READ | ✓ Aligned | Reads DEEPLX_API_URL/KEY from environment; does not harvest credentials |
| Skill Invoke | NONE | NONE | — | No skill invocation chains detected |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | READ | READ | ✓ Aligned | Chrome CDP on localhost:9222; strictly scoped to scraping |
| Database | WRITE | WRITE | ✓ Aligned | SQLite cache for review data; contained in output directory |
2 findings
Medium External URL 外部 URL
https://your-deeplx-host/translate README.md:53 Medium External URL 外部 URL
http://127.0.0.1: scripts/amazon_review_workbook.py:675 File Tree
12 files · 175.0 KB · 5210 lines Python 5f · 4471L
Markdown 6f · 735L
YAML 1f · 4L
├─
▾
agents
│ └─
openai.yaml
YAML
├─
▾
references
│ ├─
output-schema.md
Markdown
│ ├─
setup.md
Markdown
│ └─
tagging-guidelines.md
Markdown
├─
▾
scripts
│ ├─
amazon_review_workbook.py
Python
│ ├─
deeplx_translate.py
Python
│ ├─
label_workflow.py
Python
│ ├─
review_cache.py
Python
│ └─
review_delivery_schema.py
Python
├─
LICENSE.zh-CN.md
Markdown
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 5 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
requests | * | pip | No | No known CVE for current version; should be pinned for production |
websocket-client | * | pip | No | Used for Chrome CDP WebSocket |
pandas | * | pip | No | Workbook generation |
openpyxl | * | pip | No | XLSX output |
sqlite3 | built-in | stdlib | No | Local caching |
Security Positives
✓ Comprehensive SKILL.md with explicit capability declarations
✓ Clean separation of concerns across 5 focused Python modules
✓ Chrome CDP access strictly scoped to localhost:9222
✓ No credential harvesting beyond optional DeepLX API key (used only for translation)
✓ No data exfiltration — all scraped data stays in local output directory
✓ SQLite cache contained within output directory, not system paths
✓ No subprocess or shell command injection vectors
✓ No base64/eval/atob obfuscation patterns
✓ No remote script download (curl|bash, wget|sh)
✓ No iteration through os.environ for sensitive keys
✓ No access to ~/.ssh, ~/.aws/credentials, or similar sensitive paths
✓ Well-structured code with type hints and error handling
✓ Explicit failure boundaries documented in SKILL.md