<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nqspq</title>
    <description>The latest articles on DEV Community by Nqspq (@nqspq).</description>
    <link>https://dev.to/nqspq</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4056914%2Fb595aa1c-7159-463e-884f-445ede352d55.png</url>
      <title>DEV Community: Nqspq</title>
      <link>https://dev.to/nqspq</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nqspq"/>
    <language>en</language>
    <item>
      <title>I scanned 54 public repos of AI-built apps. 1 in 5 had something worth fixing.</title>
      <dc:creator>Nqspq</dc:creator>
      <pubDate>Fri, 31 Jul 2026 17:11:12 +0000</pubDate>
      <link>https://dev.to/nqspq/i-scanned-54-public-repos-of-ai-built-apps-1-in-5-had-something-worth-fixing-fo5</link>
      <guid>https://dev.to/nqspq/i-scanned-54-public-repos-of-ai-built-apps-1-in-5-had-something-worth-fixing-fo5</guid>
      <description>&lt;p&gt;If you build with Lovable, Bolt or Replit, your code ends up in a repo you probably never open. So I scanned 54 of them — public repos, picked by "recently updated".&lt;/p&gt;

&lt;p&gt;19% had something worth fixing. 15% had a password or an API key pasted straight into the code — one of them in a .tsx file, which means it ships to every visitor's browser. Two more were API keys sitting in SETUP.md, which is the sneakiest one: source files get checked, setup docs don't.&lt;/p&gt;

&lt;p&gt;Honestly, at first my scanner got this wrong. It reported 4x more criticals than were real — a lone &lt;code&gt;-----BEGIN PRIVATE KEY-----&lt;/code&gt; header counted as a leak, and every committed .env was "critical" even when it only held public Supabase values. Fixed both.&lt;/p&gt;

&lt;p&gt;Two things worth checking in your own project:&lt;/p&gt;

&lt;p&gt;Is your .env file in the repo? It starts with a dot, so it's invisible in most file browsers, and plenty of people assume it stays local. It doesn't — if it got committed, it's on GitHub for anyone to read. Run &lt;code&gt;git ls-files | grep -i env&lt;/code&gt; in your project folder to find out.&lt;/p&gt;

&lt;p&gt;Is your key actually secret? If a variable name starts with VITE_ or NEXT_PUBLIC_, the build tool deliberately bakes its value into the code sent to the browser. That's what the prefix is for. So VITE_OPENAI_API_KEY isn't hidden — any visitor can open devtools and read it.&lt;/p&gt;

&lt;p&gt;Tool is free, no signup: defcod.vercel.app. Engine is MIT: github.com/Nqspq/defcod-engine&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>security</category>
      <category>ai</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
