<?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: ONE FANCY APPS</title>
    <description>The latest articles on DEV Community by ONE FANCY APPS (@one_fancyapps_71e15a2dea).</description>
    <link>https://dev.to/one_fancyapps_71e15a2dea</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%2F4048019%2F4f3a4706-a710-4e35-a377-eeb4e02078b0.png</url>
      <title>DEV Community: ONE FANCY APPS</title>
      <link>https://dev.to/one_fancyapps_71e15a2dea</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/one_fancyapps_71e15a2dea"/>
    <language>en</language>
    <item>
      <title>Vibe Coding Security in 2026: The Complete Guide for Developers Shipping AI-Generated Code</title>
      <dc:creator>ONE FANCY APPS</dc:creator>
      <pubDate>Tue, 04 Aug 2026 17:04:16 +0000</pubDate>
      <link>https://dev.to/one_fancyapps_71e15a2dea/vibe-coding-security-in-2026-the-complete-guide-for-developers-shipping-ai-generated-code-274f</link>
      <guid>https://dev.to/one_fancyapps_71e15a2dea/vibe-coding-security-in-2026-the-complete-guide-for-developers-shipping-ai-generated-code-274f</guid>
      <description>&lt;p&gt;I've been building software for 17 years. I have never seen the distance between "idea" and "deployed to production" collapse the way it has in the last two years.&lt;/p&gt;

&lt;p&gt;You describe a feature in plain language. Claude Code, Cursor or Windsurf writes it. You skim, you accept, you ship. People are launching real products with real users and real payment flows in a weekend. This is vibe coding, and I mean this sincerely: it's wonderful.&lt;/p&gt;

&lt;p&gt;It's also producing the least reviewed code in the history of our industry, at the highest volume, deployed by the least security-experienced builders we've ever had.&lt;/p&gt;

&lt;p&gt;That combination is not a moral failing. It's a governance gap, and closing it is what this guide is about. I've written a deeper version of this thinking on the defen.so blog if you want to go further after this one.&lt;/p&gt;

&lt;p&gt;Why Vibe Coding Security Is Different: Old Vulnerabilities at AI Speed&lt;/p&gt;

&lt;p&gt;Here's what security vendors get wrong when they panic about AI code: the vulnerabilities aren't exotic. Independent testing of AI-generated code keeps finding the same classics. Close to half of generated samples in large studies carry OWASP Top 10 weaknesses. The usual suspects:&lt;/p&gt;

&lt;p&gt;Hardcoded secrets. The API key pasted into the file "just to test," then committed. AI agents do this constantly because your prompt said make it work, not make it safe.&lt;br&gt;
Missing authorization checks (IDOR). The endpoint fetches /orders/{id} and never asks whether the logged-in user owns that order. It works in every demo. It leaks every customer's data in production.&lt;br&gt;
Injection. String-concatenated SQL and shell commands still show up in generated code, because they show up in the training data.&lt;br&gt;
No input validation, no rate limits. The agent builds the login route. It does not build the brute-force cap, because you didn't ask.&lt;br&gt;
Business logic flaws. The discount code that can be applied twice. No scanner is shaped to see these, and no AI agent flags its own.&lt;/p&gt;

&lt;p&gt;None of this is new. What's new is the rate. A human developer introduces vulnerabilities at typing speed. An agent introduces them at generation speed, and a busy builder accepts them at scrolling speed.&lt;/p&gt;

&lt;p&gt;So the question changed. It's no longer "is this code vulnerable?" It's "how fast are vulnerabilities entering, and does anyone see them before an attacker does?"&lt;/p&gt;

&lt;p&gt;The 3 Windows Where AI-Generated Code Gets Exploited&lt;/p&gt;

&lt;p&gt;When I look at where vibe-coded projects actually get burned, it's almost always one of three windows.&lt;/p&gt;

&lt;p&gt;Window 1: Authorship. The flaw is written and accepted in the same minute. The person in the loop can't evaluate what they can't recognize. That's not an insult, it's just the reality of who is building now. The fix has to live inside the coding loop, not in a review meeting that never happens.&lt;/p&gt;

&lt;p&gt;Window 2: The commit. The secret hits the repo. Public or private barely matters, because leaked keys are typically abused within the hour. Bots watch GitHub the way seagulls watch a chip van. If your security starts at deployment, you already lost this window.&lt;/p&gt;

&lt;p&gt;Window 3: Production, day 30. The app works, the launch tweet did numbers, everyone moved on. Then a dependency CVE drops, the SSL cert quietly expires, and the login route starts eating credential-stuffing traffic at 3 a.m. Nobody is watching, because watching was never set up. This is the window where "it's just a side project" turns into "why is my database on a leak forum."&lt;/p&gt;

&lt;p&gt;Traditional AppSec, the annual pentest and the security review meeting, was built for none of these. It assumed code arrived slowly, written by professionals, into environments someone was paid to watch.&lt;/p&gt;

&lt;p&gt;The Secure Vibe Coding Checklist: 4 Governance Loops&lt;/p&gt;

&lt;p&gt;Forget the enterprise governance stack for a moment. A solo builder or a three-person team will not adopt policy documents. Governance only happens here if it's ambient: installed once, running always, speaking through the tools you already use. In practice that means four loops.&lt;/p&gt;

&lt;p&gt;Loop 1: Scan AI-Generated Code at Authorship (MCP in Claude Code, Cursor, Windsurf)&lt;/p&gt;

&lt;p&gt;Security feedback has to appear where the code is generated: in the editor, in the terminal, in the AI agent's own context. This is exactly what MCP quietly fixed. Your security tooling can now be a tool inside Claude Code or Cursor, so the agent that writes the vulnerable line can be the agent that's told to fix it, in the same session. The defen.so scanner works this way: the MCP tools plug into your editor and flag risky code as you write it. Scanning that requires leaving the editor is scanning that doesn't happen.&lt;/p&gt;

&lt;p&gt;Loop 2: GitHub Repo Scanning and Secret Leak Detection&lt;/p&gt;

&lt;p&gt;Secret detection and dependency scanning on every push. Not as a CI moralizer that fails builds three days later, but as an immediate alert. The single highest-ROI security control for a vibe-coded project is knowing within minutes that a key was committed. Everything about window 2 is a race, so enter the race. This is why repo scanning and secret leak detection are built into defen.so from the first command.&lt;/p&gt;

&lt;p&gt;Loop 3: Managed WAF and API Rate Limiting for Production&lt;/p&gt;

&lt;p&gt;Put a shield in front of production: a managed WAF with sane defaults that blocks injection attempts and bad bots, rate-limits your APIs, and caps the login route against brute force. This is the control that forgives the flaws you didn't catch. The point of a firewall in this era isn't perfection, it's buying you time and cutting the noise while you fix findings at your own pace. And it has to fail open. A security tool that takes your site down has misunderstood its job.&lt;/p&gt;

&lt;p&gt;Loop 4: Uptime Monitoring and Multi-Channel Security Alerts&lt;/p&gt;

&lt;p&gt;Watch everything that matters: uptime from multiple regions, domain and SSL expiry, new scan findings. And here's the part almost everyone gets wrong: the alert channel matters more than the alert. An email at 3 a.m. protects nobody. The alert has to reach the channel you actually live in. A phone alert that behaves like a call and refuses to be ignored. Slack or Discord for the team. A signed webhook for your ops stack. Severity should choose the volume. This philosophy is the reason the Defen.so Alerts app exists.&lt;/p&gt;

&lt;p&gt;That's the whole model. Not a framework with an acronym. Four loops, installed in minutes, running forever.&lt;/p&gt;

&lt;p&gt;Vibe Coding Security for Solo Developers and Small Teams&lt;/p&gt;

&lt;p&gt;"But I'm just one person."&lt;/p&gt;

&lt;p&gt;That's exactly who this is for. The enterprise has a security team to compensate for missing governance. You don't. The solo builder's version of a CISO is automation with good defaults.&lt;/p&gt;

&lt;p&gt;And the economics have flipped. Five years ago this stack, SAST plus secret scanning plus a managed WAF plus multi-region monitoring plus on-call alerting, meant six figures of tooling and a hire. Today the whole loop installs from a terminal in under a minute. I know because I built one: defen.so wires the scanner, the WAF, uptime monitoring and the MCP tools with a single npx command, grades your security posture from A to F, and ships every finding with a fix you can paste.&lt;/p&gt;

&lt;p&gt;I built it because I lived the gap. Seventeen years of engineering, a decade running dozens of client sites, and the same 3 a.m. lesson everyone learns eventually: the incident you find out about from a customer is the one that costs you the customer.&lt;/p&gt;

&lt;p&gt;But tool choice is secondary. Use anything. The loops are the point.&lt;/p&gt;

&lt;p&gt;Vibe Coding Security in 2026 and Beyond: Regulation Is Coming&lt;/p&gt;

&lt;p&gt;Regulation is coming for this space. Vulnerability reporting duties, insurers carving AI-generated code out of coverage, procurement teams asking where your code came from. Builders who set up ambient governance now will treat those changes as paperwork. The ones who didn't will treat them as an existential crisis, mid-incident.&lt;/p&gt;

&lt;p&gt;Vibe coding won. The speed is not going back in the bottle, and it shouldn't. The only question left is whether the safety catches up per project, by default, in minutes. The alternative is a few more years of breach postmortems that all begin with "the app was built in a weekend."&lt;/p&gt;

&lt;p&gt;Ship fast. Watch everything. Make the alert loud.&lt;/p&gt;

&lt;p&gt;I'm Younes. I build &lt;a href="https://defen.so" rel="noopener noreferrer"&gt;defen.so&lt;/a&gt;, a modern security kit for developers and vibe coders: scan your website, apps and GitHub repos for vulnerabilities, block attacks and bad bots, rate-limit your APIs, and monitor uptime, domain and SSL expiry in one platform. The defen.so blog goes deeper on every loop in this guide.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I built a security layer for applications that developers can install in seconds</title>
      <dc:creator>ONE FANCY APPS</dc:creator>
      <pubDate>Sun, 26 Jul 2026 14:14:29 +0000</pubDate>
      <link>https://dev.to/one_fancyapps_71e15a2dea/i-built-a-security-layer-for-applications-that-developers-can-install-in-seconds-3c3j</link>
      <guid>https://dev.to/one_fancyapps_71e15a2dea/i-built-a-security-layer-for-applications-that-developers-can-install-in-seconds-3c3j</guid>
      <description>&lt;p&gt;&lt;strong&gt;Building Defen.so: a developer-first security layer for modern applications&lt;/strong&gt;&lt;br&gt;
Most developers know they should add more security to their applications.&lt;/p&gt;

&lt;p&gt;A WAF, vulnerability scanning, monitoring, rate limiting, bot protection, file upload checks, security logs...&lt;/p&gt;

&lt;p&gt;But in practice, security often becomes a task for "later".&lt;/p&gt;

&lt;p&gt;The problem is that later usually means after something goes wrong.&lt;br&gt;
I started building Defen.so with a simple idea:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Security should be part of the application from the beginning, not a separate project.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/1fancy/defen.so" rel="noopener noreferrer"&gt;https://github.com/1fancy/defen.so&lt;br&gt;
&lt;/a&gt;&lt;br&gt;
Website:&lt;br&gt;
&lt;a href="https://defen.so" rel="noopener noreferrer"&gt;https://defen.so&lt;br&gt;
&lt;/a&gt;&lt;br&gt;
What is Defen.so?&lt;/p&gt;

&lt;p&gt;Defen.so is an application security layer that helps developers protect and monitor their applications without managing complex security infrastructure.&lt;/p&gt;

&lt;p&gt;It sits close to your application and provides protection, visibility and security tools from development to production.&lt;/p&gt;

&lt;p&gt;The goal is not to replace security teams or enterprise tools.&lt;/p&gt;

&lt;p&gt;The goal is to make strong security practices accessible to developers, startups and small teams.&lt;/p&gt;

&lt;p&gt;What it currently includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Application protection&lt;/li&gt;
&lt;li&gt;Managed WAF rules&lt;/li&gt;
&lt;li&gt;SQL injection protection&lt;/li&gt;
&lt;li&gt;XSS protection&lt;/li&gt;
&lt;li&gt;Brute force prevention&lt;/li&gt;
&lt;li&gt;API abuse detection&lt;/li&gt;
&lt;li&gt;Bot detection&lt;/li&gt;
&lt;li&gt;DDoS protection&lt;/li&gt;
&lt;li&gt;File upload security&lt;/li&gt;
&lt;li&gt;Monitoring&lt;/li&gt;
&lt;li&gt;Uptime monitoring&lt;/li&gt;
&lt;li&gt;Performance visibility&lt;/li&gt;
&lt;li&gt;Real-time security events&lt;/li&gt;
&lt;li&gt;Attack logs&lt;/li&gt;
&lt;li&gt;Alerts through email, Slack, Telegram and webhooks&lt;/li&gt;
&lt;li&gt;Security scanning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Defen.so can scan applications and environments for common issues:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Exposed configuration&lt;/li&gt;
&lt;li&gt;Missing security headers&lt;/li&gt;
&lt;li&gt;Weak settings&lt;/li&gt;
&lt;li&gt;Public files&lt;/li&gt;
&lt;li&gt;Common deployment mistakes&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;There is also a security scan designed around mistakes frequently seen in fast-built applications:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Exposed secrets&lt;/li&gt;
&lt;li&gt;Incorrect cloud permissions&lt;/li&gt;
&lt;li&gt;Weak authentication configuration&lt;/li&gt;
&lt;li&gt;Missing protection layers&lt;/li&gt;
&lt;li&gt;Built for developers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Installation is designed to be simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;npx @defen.so/init&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The idea is that adding security should feel closer to installing a package than setting up a large infrastructure project.&lt;/p&gt;

&lt;p&gt;Supported ecosystems include:&lt;br&gt;
Node.js, PHP, Python, Go, Ruby, Rust, Java, .NET, Bun, Deno&lt;/p&gt;

&lt;p&gt;Security inside your coding workflow&lt;/p&gt;

&lt;p&gt;One thing I found interesting while building this is how development workflows are changing.&lt;/p&gt;

&lt;p&gt;Many developers now use tools like Claude Code, Cursor, Windsurf and VS Code assistants.&lt;/p&gt;

&lt;p&gt;Defen.so includes an MCP server that allows these tools to interact with security information:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Review routes&lt;/li&gt;
&lt;li&gt;Check potential vulnerabilities&lt;/li&gt;
&lt;li&gt;Analyse security issues&lt;/li&gt;
&lt;li&gt;Suggest fixes&lt;/li&gt;
&lt;li&gt;Review application behaviour&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is to bring security closer to where code is written.&lt;/p&gt;

&lt;p&gt;Some technical decisions&lt;br&gt;
Fail open architecture&lt;/p&gt;

&lt;p&gt;A security layer should protect your application, not become another availability risk.&lt;/p&gt;

&lt;p&gt;If Defen.so is unreachable, the application continues serving traffic.&lt;/p&gt;

&lt;p&gt;You lose protection temporarily, not uptime.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Framework-friendly&lt;/strong&gt;&lt;br&gt;
The same idea should work whether you are building:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A small SaaS&lt;/li&gt;
&lt;li&gt;An API&lt;/li&gt;
&lt;li&gt;A mobile backend&lt;/li&gt;
&lt;li&gt;A customer dashboard&lt;/li&gt;
&lt;li&gt;An internal tool&lt;/li&gt;
&lt;li&gt;Current status&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The project is actively being developed and tested.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Current features include:&lt;/strong&gt;&lt;br&gt;
SDK packages&lt;br&gt;
Security middleware&lt;br&gt;
Dashboard&lt;br&gt;
Threat monitoring&lt;br&gt;
Scanning workflows&lt;br&gt;
MCP integration&lt;br&gt;
Multiple framework integrations&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repository:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/1fancy/defen.so" rel="noopener noreferrer"&gt;https://github.com/1fancy/defen.so&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I would love feedback from developers:&lt;/p&gt;

&lt;p&gt;What security tools do you currently use for your applications?&lt;br&gt;
What is the biggest pain point: setup, cost, complexity, or knowing what to fix?&lt;/p&gt;

&lt;p&gt;I'm especially interested in feedback from people building SaaS products and APIs.&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>vibecoding</category>
      <category>monitoring</category>
    </item>
  </channel>
</rss>
