azure-search-documents-ts
Facilitates the creation of advanced search applications using Azure AI Search SDK for JavaScript, enabling vector and semantic search capabilities.
Install this skill
Security score
The azure-search-documents-ts skill was audited on Mar 7, 2026 and we found 11 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 88 | console.log(`Indexed ${result.results.length} documents`); |
Template literal with variable interpolation in command context
| 102 | console.log(`${result.document.title}: ${result.score}`); |
Template literal with variable interpolation in command context
| 126 | console.log(`${result.document.title}: ${result.score}`); |
Template literal with variable interpolation in command context
| 183 | console.log(`${result.document.title}`); |
Template literal with variable interpolation in command context
| 184 | console.log(` Caption: ${result.captions?.[0]?.text}`); |
Template literal with variable interpolation in command context
| 185 | console.log(` Reranker Score: ${result.rerankerScore}`); |
Template literal with variable interpolation in command context
| 200 | console.log(`${facetName}:`); |
Template literal with variable interpolation in command context
| 202 | console.log(` ${facet.value}: ${facet.count}`); |
Access to .env file
| 33 | const endpoint = process.env.AZURE_SEARCH_ENDPOINT!; |
Access to .env file
| 34 | const indexName = process.env.AZURE_SEARCH_INDEX_NAME!; |
External URL reference
| 22 | AZURE_SEARCH_ENDPOINT=https://<service-name>.search.windows.net |