cloudflare-containers
Deploys and manages Docker containers on Cloudflare's network for scalable applications, supporting Python, AI inference, and large file processing.
Install this skill
Security score
The cloudflare-containers skill was audited on Feb 9, 2026 and we found 17 security issues across 4 threat categories, including 1 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Direct command execution function call
| 287 | const result = await sandbox.exec('python3 -c "print(2 + 2)"'); |
Template literal with variable interpolation in command context
| 312 | R2_ENDPOINT: `https://${this.env.R2_ACCOUNT_ID}.r2.cloudflarestorage.com`, |
Template literal with variable interpolation in command context
| 346 | ```dockerfile |
Python subprocess execution
| 163 | result = subprocess.run( |
Curl to non-GitHub URL
| 354 | VERSION=$(curl -s https://api.github.com/repos/tigrisdata/tigrisfs/releases/latest | grep -o '"tag_name": "[^"]*' | cut -d'"' -f4) && \ |
Access to .env file
| 310 | AWS_ACCESS_KEY_ID: this.env.AWS_ACCESS_KEY_ID, |
Access to .env file
| 311 | AWS_SECRET_ACCESS_KEY: this.env.AWS_SECRET_ACCESS_KEY, |
Access to .env file
| 312 | R2_ENDPOINT: `https://${this.env.R2_ACCOUNT_ID}.r2.cloudflarestorage.com`, |
Access to .env file
| 313 | R2_BUCKET: this.env.R2_BUCKET_NAME, |
Access to .env file
| 380 | AWS_ACCESS_KEY_ID: this.env.AWS_ACCESS_KEY_ID, |
Access to .env file
| 381 | AWS_SECRET_ACCESS_KEY: this.env.AWS_SECRET_ACCESS_KEY, |
Access to .env file
| 382 | BUCKET_NAME: this.env.R2_BUCKET_NAME, |
Access to .env file
| 383 | R2_ACCOUNT_ID: this.env.R2_ACCOUNT_ID, |
External URL reference
| 195 | new Request('http://container/execute', { |
External URL reference
| 312 | R2_ENDPOINT: `https://${this.env.R2_ACCOUNT_ID}.r2.cloudflarestorage.com`, |
External URL reference
| 354 | VERSION=$(curl -s https://api.github.com/repos/tigrisdata/tigrisfs/releases/latest | grep -o '"tag_name": "[^"]*' | cut -d'"' -f4) && \ |
External URL reference
| 363 | R2_ENDPOINT="https://${R2_ACCOUNT_ID}.r2.cloudflarestorage.com"\n\ |