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 Mar 8, 2026 and we found 18 security issues across 5 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 120

Template literal with variable interpolation in command context

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

Template literal with variable interpolation in command context

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

Template literal with variable interpolation in command context

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

Template literal with variable interpolation in command context

SourceSKILL.md
468headers: { Authorization: `Bearer ${userToken}` }
low line 461

Fetch to external URL

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

Fetch to external URL

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

Fetch to external URL

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

Fetch to external URL

SourceSKILL.md
485fetch('/api/endpoint')
low line 34

Access to .env file

SourceSKILL.md
34const apiKey = process.env.OPENAI_API_KEY
low line 35

Access to .env file

SourceSKILL.md
35const dbUrl = process.env.DATABASE_URL
medium line 47

Access to .env file

SourceSKILL.md
47- [ ] `.env.local` in .gitignore
low line 377

Buffer.from base64 decode

SourceSKILL.md
377Buffer.from(signature, 'base64'),
low line 378

Buffer.from base64 decode

SourceSKILL.md
378Buffer.from(publicKey, 'base64')
low line 236

External URL reference

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

External URL reference

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

External URL reference

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

External URL reference

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

External URL reference

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