deploy-render
Offers detailed guidelines for deploying applications on Render.com, including environment setup, database migrations, and best practices.
Install this skill
Security score
The deploy-render skill was audited on Feb 9, 2026 and we found 23 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 75 | ```bash |
Template literal with variable interpolation in command context
| 202 | ```bash |
Template literal with variable interpolation in command context
| 351 | console.log(`Sending email to ${to}`); |
Template literal with variable interpolation in command context
| 549 | `https://${request.headers.get('host')}${request.nextUrl.pathname}`, |
Curl to non-GitHub URL
| 645 | curl -X POST https://api.render.com/deploy/srv-xxx?key=xxx |
Webhook reference - potential data exfiltration
| 95 | STRIPE_WEBHOOK_SECRET=whsec_... |
Webhook reference - potential data exfiltration
| 639 | **Webhook URL:** |
Webhook reference - potential data exfiltration
| 641 | - Copy webhook URL |
Access to .env file
| 17 | - [ ] `.gitignore` includes `.env`, `node_modules`, build artifacts |
Access to .env file
| 260 | const pool = new Pool({ connectionString: process.env.DATABASE_URL }); |
Access to .env file
| 346 | const emailQueue = new Queue('email', process.env.REDIS_URL); |
Access to .env file
| 500 | key: process.env.LOGDNA_KEY, |
Access to .env file
| 502 | env: process.env.NODE_ENV |
Access to .env file
| 708 | - Port binding: app.listen(process.env.PORT || 10000) |
External URL reference
| 81 | NEXT_PUBLIC_SITE_URL=https://your-app.onrender.com |
External URL reference
| 82 | NEXTAUTH_URL=https://your-app.onrender.com |
External URL reference
| 89 | NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co |
External URL reference
| 549 | `https://${request.headers.get('host')}${request.nextUrl.pathname}`, |
External URL reference
| 645 | curl -X POST https://api.render.com/deploy/srv-xxx?key=xxx |
External URL reference
| 745 | - [Render Documentation](https://render.com/docs) |
External URL reference
| 746 | - [render.yaml Reference](https://render.com/docs/yaml-spec) |
External URL reference
| 747 | - [Deploy Hooks](https://render.com/docs/deploy-hooks) |
External URL reference
| 748 | - [Health Checks](https://render.com/docs/health-checks) |