bknd-testing
Facilitates testing for Bknd applications with setup for unit/integration tests, API testing, and in-memory database configurations.
Install this skill
Security score
The bknd-testing skill was audited on Feb 9, 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
| 266 | const baseUrl = `http://localhost:${port}`; |
Template literal with variable interpolation in command context
| 283 | const res = await fetch(`${baseUrl}/api/data/posts`); |
Template literal with variable interpolation in command context
| 291 | const res = await fetch(`${baseUrl}/api/data/posts`, { |
Template literal with variable interpolation in command context
| 490 | title: `Test Post ${counter}`, |
Template literal with variable interpolation in command context
| 491 | content: `Content for post ${counter}`, |
Template literal with variable interpolation in command context
| 500 | email: `user${counter}@test.com`, |
Template literal with variable interpolation in command context
| 663 | ```typescript |
Access to .env file
| 671 | connection: { url: process.env.DB_URL } |
External URL reference
| 120 | const baseUrl = "http://localhost:0"; // Placeholder |
External URL reference
| 266 | const baseUrl = `http://localhost:${port}`; |
External URL reference
| 317 | api = new Api({ host: "http://localhost:3999" }); |
External URL reference
| 435 | url: "https://api.example.com/data", |
External URL reference
| 526 | url: "https://example.com/api", |
External URL reference
| 540 | url: "https://invalid-url-that-fails.test", |