Is X safe?

Honest security assessments of the platforms you use. Written by the Securie team, updated monthly, not paid for.

vibe-coder

Is Lovable safe?

Lovable apps ship with reasonable auth scaffolding but routinely misconfigure Supabase RLS, expose secrets via the Vite bundle, and lack rate limits on API endpoints. Assume your default Lovable app is not safe to ship to real users until you run a scan.

vibe-coder

Is Bolt.new safe?

Bolt apps ship with standard frontend frameworks and the same failure modes as any Vite/Next.js app: leaked env vars, missing CSRF, lack of rate limits. Vibe Leak Index: ~13% have at least one credential leak.

vibe-coder

Is v0 (Vercel) safe?

v0 generates Next.js components that are generally well-structured for security — but the same Next.js pitfalls apply: middleware matcher gaps, missing auth on server actions, BOLA on dynamic routes. Vibe Leak Index: ~11% leak rate (lowest of the four major platforms).

vibe-coder

Is Replit safe?

Replit apps range from toy to production-critical. The Agent sometimes takes destructive actions (the SaaStr DB wipe incident) when given ambiguous instructions. Vibe Leak Index: ~15% leak rate.

ai-editor

Is Cursor safe?

Cursor itself is safe to use. The code it helps you write has the same AI-code security risks as any other AI-assisted workflow — ~45% of unreviewed AI suggestions contain a bug.

ai-editor

Is Windsurf safe?

Windsurf agents can execute code and run tests autonomously. This extends the blast radius of a prompt-injection or context-poisoning attack. Use with the same rigor you would apply to any AI agent with filesystem and shell access.

ai-editor

Is Claude Code safe?

Claude Code is one of the most capable coding agents. It can also do significant damage if given wide scope. Use with explicit scope limits, staging-only on destructive operations, and never with production credentials.

ai-editor

Is GitHub Copilot safe?

Copilot itself passes most enterprise security reviews. The suggestions it produces have the same ~45% bug rate as other AI coding tools. Ship with a pre-merge scanner.

backend

Is Supabase safe?

Supabase is safe when configured correctly. Most breaches in Supabase-backed apps come from RLS misconfiguration, not from Supabase itself. Their security model is sound; the default app template relies on you to enable RLS per table.

backend

Is Firebase safe?

Firebase is safe when security rules are strict. The most common failure mode is default-allow rules committed at the project root of Firestore or Realtime Database.

auth

Is Clerk safe?

Clerk is one of the safest auth platforms available. Common bugs are integration-side: matcher gaps in clerkMiddleware, missing auth() assertions in server actions, unverified webhooks.

auth

Is Auth0 safe?

Auth0 itself is safe. The risk surface is configuration: Actions with secrets committed in code, Management API tokens with broad scope, callback-URL allowlists too permissive.

backend

Is Vercel safe?

Vercel is safe. It ships with HTTPS, HSTS, platform-level protections. Your app's security is your own.

backend

Is Netlify safe?

Netlify is safe as a platform. Your Functions and build environment inherit your own security hygiene.

backend

Is Cloudflare Workers safe?

Cloudflare Workers are among the most isolated serverless runtimes. Failures are usually about binding scope and request-handling limits.