bknd-debugging
Facilitates troubleshooting and debugging of Bknd issues using CLI commands, error analysis, and systematic problem-solving techniques.
Install this skill
Security score
The bknd-debugging skill was audited on Feb 12, 2026 and we found 32 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 536 | console.log("Posts access:", posts.ok ? "success" : `failed (${posts.status})`); |
Template literal with variable interpolation in command context
| 595 | console.log("←", response.status, `(${Date.now() - start}ms)`); |
Curl to non-GitHub URL
| 175 | curl -X POST http://localhost:3000/api/auth/password/login \ |
Curl to non-GitHub URL
| 235 | curl http://localhost:3000/api/auth/me \ |
Curl to non-GitHub URL
| 294 | curl http://localhost:3000/api/data |
Curl to non-GitHub URL
| 297 | curl http://localhost:3000/api/data/Posts # ✗ |
Curl to non-GitHub URL
| 298 | curl http://localhost:3000/api/data/posts # ✓ |
Curl to non-GitHub URL
| 363 | curl http://localhost:3000/api/system/schema |
Curl to non-GitHub URL
| 401 | curl -X POST http://localhost:3000/api/media/upload \ |
Curl to non-GitHub URL
| 444 | curl -I http://localhost:3000/api/data/posts \ |
Curl to non-GitHub URL
| 636 | curl http://localhost:3000/api/data |
Fetch to external URL
| 518 | const entities = await fetch("http://localhost:3000/api/data"); |
Fetch to external URL
| 530 | const schema = await fetch("http://localhost:3000/api/system/schema"); |
Access to .env file
| 205 | secret: process.env.JWT_SECRET, // Required for production |
External URL reference
| 175 | curl -X POST http://localhost:3000/api/auth/password/login \ |
External URL reference
| 223 | host: "http://localhost:3000", |
External URL reference
| 235 | curl http://localhost:3000/api/auth/me \ |
External URL reference
| 294 | curl http://localhost:3000/api/data |
External URL reference
| 297 | curl http://localhost:3000/api/data/Posts # ✗ |
External URL reference
| 298 | curl http://localhost:3000/api/data/posts # ✓ |
External URL reference
| 344 | const api = new Api({ url: "http://localhost:3000" }); |
External URL reference
| 363 | curl http://localhost:3000/api/system/schema |
External URL reference
| 401 | curl -X POST http://localhost:3000/api/media/upload \ |
External URL reference
| 444 | curl -I http://localhost:3000/api/data/posts \ |
External URL reference
| 445 | -H "Origin: http://localhost:5173" |
External URL reference
| 454 | origin: ["http://localhost:5173", "https://myapp.com"], |
External URL reference
| 514 | const api = new Api({ host: "http://localhost:3000" }); |
External URL reference
| 518 | const entities = await fetch("http://localhost:3000/api/data"); |
External URL reference
| 530 | const schema = await fetch("http://localhost:3000/api/system/schema"); |
External URL reference
| 572 | host: "http://localhost:3000", |
External URL reference
| 590 | host: "http://localhost:3000", |
External URL reference
| 636 | curl http://localhost:3000/api/data |