Skip to main content

security-review

Ensures code adheres to security best practices, identifying vulnerabilities in authentication, API endpoints, and sensitive data handling.

Install this skill

or
62/100

Security score

The security-review skill was audited on Feb 28, 2026 and we found 18 security issues across 5 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 113

Template literal with variable interpolation in command context

SourceSKILL.md
113const query = `SELECT * FROM users WHERE email = '${userEmail}'`
medium line 147

Template literal with variable interpolation in command context

SourceSKILL.md
147`token=${token}; HttpOnly; Secure; SameSite=Strict; Max-Age=3600`)
medium line 256

Template literal with variable interpolation in command context

SourceSKILL.md
256`session=${sessionId}; HttpOnly; Secure; SameSite=Strict`)
medium line 436

Template literal with variable interpolation in command context

SourceSKILL.md
436headers: { Authorization: `Bearer ${userToken}` }
low line 429

Fetch to external URL

SourceSKILL.md
429const response = await fetch('/api/protected')
low line 435

Fetch to external URL

SourceSKILL.md
435const response = await fetch('/api/admin', {
low line 443

Fetch to external URL

SourceSKILL.md
443const response = await fetch('/api/users', {
low line 453

Fetch to external URL

SourceSKILL.md
453fetch('/api/endpoint')
low line 32

Access to .env file

SourceSKILL.md
32const apiKey = process.env.OPENAI_API_KEY
low line 33

Access to .env file

SourceSKILL.md
33const dbUrl = process.env.DATABASE_URL
medium line 44

Access to .env file

SourceSKILL.md
44- [ ] `.env.local` in .gitignore
low line 351

Buffer.from base64 decode

SourceSKILL.md
351Buffer.from(signature, 'base64'),
low line 352

Buffer.from base64 decode

SourceSKILL.md
352Buffer.from(publicKey, 'base64')
low line 221

External URL reference

SourceSKILL.md
221connect-src 'self' https://api.example.com;
low line 487

External URL reference

SourceSKILL.md
487- [OWASP Top 10](https://owasp.org/www-project-top-ten/)
low line 488

External URL reference

SourceSKILL.md
488- [Next.js Security](https://nextjs.org/docs/security)
low line 489

External URL reference

SourceSKILL.md
489- [Supabase Security](https://supabase.com/docs/guides/auth)
low line 490

External URL reference

SourceSKILL.md
490- [Web Security Academy](https://portswigger.net/web-security)
Scanned on Feb 28, 2026
View Security Dashboard