azure-storage-blob-ts
Facilitates blob operations in Azure Blob Storage using JavaScript/TypeScript SDK for efficient data management.
Install this skill
Security score
The azure-storage-blob-ts skill was audited on Jun 3, 2026 and we found 18 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 41 | `https://${accountName}.blob.core.windows.net`, |
Template literal with variable interpolation in command context
| 66 | `https://${accountName}.blob.core.windows.net`, |
Template literal with variable interpolation in command context
| 80 | `https://${accountName}.blob.core.windows.net${sasToken}` |
Template literal with variable interpolation in command context
| 161 | onProgress: (progress) => console.log(`Uploaded ${progress.loadedBytes} bytes`), |
Template literal with variable interpolation in command context
| 229 | console.log(`Directory: ${item.name}`); |
Template literal with variable interpolation in command context
| 231 | console.log(`Blob: ${item.name}`); |
Template literal with variable interpolation in command context
| 317 | const sasUrl = `https://${accountName}.blob.core.windows.net/my-container/my-file.txt?${sasToken}`; |
Template literal with variable interpolation in command context
| 417 | console.error(`Storage error ${error.statusCode}: ${error.message}`); |
Access to .env file
| 39 | const accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!; |
Access to .env file
| 52 | process.env.AZURE_STORAGE_CONNECTION_STRING! |
Access to .env file
| 61 | const accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!; |
Access to .env file
| 62 | const accountKey = process.env.AZURE_STORAGE_ACCOUNT_KEY!; |
Access to .env file
| 76 | const accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!; |
Access to .env file
| 77 | const sasToken = process.env.AZURE_STORAGE_SAS_TOKEN!; // starts with "?" |
External URL reference
| 41 | `https://${accountName}.blob.core.windows.net`, |
External URL reference
| 66 | `https://${accountName}.blob.core.windows.net`, |
External URL reference
| 80 | `https://${accountName}.blob.core.windows.net${sasToken}` |
External URL reference
| 317 | const sasUrl = `https://${accountName}.blob.core.windows.net/my-container/my-file.txt?${sasToken}`; |