azure-eventhub-ts
Facilitates high-throughput event streaming and real-time data ingestion using Azure Event Hubs with TypeScript.
Install this skill
Security score
The azure-eventhub-ts skill was audited on Jun 3, 2026 and we found 14 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 89 | console.log(`Partition: ${context.partitionId}, Body: ${JSON.stringify(event.body)}`); |
Template literal with variable interpolation in command context
| 93 | console.error(`Error on partition ${context.partitionId}: ${err.message}`); |
Template literal with variable interpolation in command context
| 112 | `https://${storageAccount}.blob.core.windows.net/${containerName}`, |
Template literal with variable interpolation in command context
| 129 | console.log(`Processing: ${JSON.stringify(event.body)}`); |
Template literal with variable interpolation in command context
| 137 | console.error(`Error: ${err.message}`); |
Template literal with variable interpolation in command context
| 167 | console.log(`Partitions: ${hubProperties.partitionIds}`); |
Template literal with variable interpolation in command context
| 171 | console.log(`Last sequence: ${partitionProperties.lastEnqueuedSequenceNumber}`); |
Template literal with variable interpolation in command context
| 226 | console.log(`Type: ${event.properties?.eventType}`); |
Template literal with variable interpolation in command context
| 227 | console.log(`Sequence: ${event.sequenceNumber}`); |
Template literal with variable interpolation in command context
| 228 | console.log(`Enqueued: ${event.enqueuedTimeUtc}`); |
Template literal with variable interpolation in command context
| 229 | console.log(`Offset: ${event.offset}`); |
Access to .env file
| 39 | const fullyQualifiedNamespace = process.env.EVENTHUB_NAMESPACE!; |
Access to .env file
| 40 | const eventHubName = process.env.EVENTHUB_NAME!; |
External URL reference
| 112 | `https://${storageAccount}.blob.core.windows.net/${containerName}`, |