Skip to main content

bknd-debugging

Facilitates troubleshooting and debugging of Bknd issues using CLI commands, error analysis, and systematic problem-solving techniques.

Install this skill

or
24/100

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

medium line 536

Template literal with variable interpolation in command context

SourceSKILL.md
536console.log("Posts access:", posts.ok ? "success" : `failed (${posts.status})`);
medium line 595

Template literal with variable interpolation in command context

SourceSKILL.md
595console.log("←", response.status, `(${Date.now() - start}ms)`);
medium line 175

Curl to non-GitHub URL

SourceSKILL.md
175curl -X POST http://localhost:3000/api/auth/password/login \
medium line 235

Curl to non-GitHub URL

SourceSKILL.md
235curl http://localhost:3000/api/auth/me \
medium line 294

Curl to non-GitHub URL

SourceSKILL.md
294curl http://localhost:3000/api/data
medium line 297

Curl to non-GitHub URL

SourceSKILL.md
297curl http://localhost:3000/api/data/Posts # ✗
medium line 298

Curl to non-GitHub URL

SourceSKILL.md
298curl http://localhost:3000/api/data/posts # ✓
medium line 363

Curl to non-GitHub URL

SourceSKILL.md
363curl http://localhost:3000/api/system/schema
medium line 401

Curl to non-GitHub URL

SourceSKILL.md
401curl -X POST http://localhost:3000/api/media/upload \
medium line 444

Curl to non-GitHub URL

SourceSKILL.md
444curl -I http://localhost:3000/api/data/posts \
medium line 636

Curl to non-GitHub URL

SourceSKILL.md
636curl http://localhost:3000/api/data
low line 518

Fetch to external URL

SourceSKILL.md
518const entities = await fetch("http://localhost:3000/api/data");
low line 530

Fetch to external URL

SourceSKILL.md
530const schema = await fetch("http://localhost:3000/api/system/schema");
low line 205

Access to .env file

SourceSKILL.md
205secret: process.env.JWT_SECRET, // Required for production
low line 175

External URL reference

SourceSKILL.md
175curl -X POST http://localhost:3000/api/auth/password/login \
low line 223

External URL reference

SourceSKILL.md
223host: "http://localhost:3000",
low line 235

External URL reference

SourceSKILL.md
235curl http://localhost:3000/api/auth/me \
low line 294

External URL reference

SourceSKILL.md
294curl http://localhost:3000/api/data
low line 297

External URL reference

SourceSKILL.md
297curl http://localhost:3000/api/data/Posts # ✗
low line 298

External URL reference

SourceSKILL.md
298curl http://localhost:3000/api/data/posts # ✓
low line 344

External URL reference

SourceSKILL.md
344const api = new Api({ url: "http://localhost:3000" });
low line 363

External URL reference

SourceSKILL.md
363curl http://localhost:3000/api/system/schema
low line 401

External URL reference

SourceSKILL.md
401curl -X POST http://localhost:3000/api/media/upload \
low line 444

External URL reference

SourceSKILL.md
444curl -I http://localhost:3000/api/data/posts \
low line 445

External URL reference

SourceSKILL.md
445-H "Origin: http://localhost:5173"
low line 454

External URL reference

SourceSKILL.md
454origin: ["http://localhost:5173", "https://myapp.com"],
low line 514

External URL reference

SourceSKILL.md
514const api = new Api({ host: "http://localhost:3000" });
low line 518

External URL reference

SourceSKILL.md
518const entities = await fetch("http://localhost:3000/api/data");
low line 530

External URL reference

SourceSKILL.md
530const schema = await fetch("http://localhost:3000/api/system/schema");
low line 572

External URL reference

SourceSKILL.md
572host: "http://localhost:3000",
low line 590

External URL reference

SourceSKILL.md
590host: "http://localhost:3000",
low line 636

External URL reference

SourceSKILL.md
636curl http://localhost:3000/api/data
Scanned on Feb 12, 2026
View Security Dashboard
Installation guide →