deploy-on-vercel
Pass
Audited by Gen Agent Trust Hub on Aug 3, 2026
Risk Level: SAFEDATA_EXFILTRATIONPROMPT_INJECTIONCOMMAND_EXECUTION
Full Analysis
- [DATA_EXFILTRATION]: The deployment script packages local directory contents for upload to an external service without sufficient filtering.
- Evidence: The
scripts/deploy.shscript usestarto create a package:tar -czf "$TARBALL" -C "$PROJECT_PATH" --exclude='node_modules' --exclude='.git' .. - Risk: This exclusion list fails to omit
.envfiles, SSH keys, or other sensitive configuration files typically stored in project roots, potentially exposing credentials to the remote endpoint. - [PROMPT_INJECTION]: The skill processes untrusted local data, creating a surface for indirect prompt injection.
- Ingestion points: The
scripts/deploy.shscript reads the project directory andpackage.jsoncontent indetect_framework. - Boundary markers: No markers are present to distinguish file content from agent instructions.
- Capability inventory: The skill possesses file read (
tar) and network upload (curl) capabilities. - Sanitization: No filtering or sanitization is applied to the project files prior to ingestion and packaging.
- [COMMAND_EXECUTION]: The skill uses a shell script to perform its primary functions.
- Evidence: The
SKILL.mdfrontmatter allows theBashtool to runscripts/deploy.sh, which executes shell commands liketar,find, andcurlto manage files and network requests.
Audit Metadata