Beyond the Vulnerability Apocalypse: Scaling Your Basics and Vulnerability Management
Developed together with Usman Chaudhary @ Google for Public Sector (hisΒ post)
Letβs call it what some in the industry are calling it: the vulnerability apocalypse. For years, finding vulnerabilities was slow, expensive, specialized work. LLMs made it cheapβββin its first weeks, one frontier model surfaced more than 23,000 issues across a thousand open-source projects, including a 27-year-old flaw in OpenBSD found for under $20,000 in compute. And when finding bugs gets cheap, attackers find more of themβββand likely exploit more of them, faster than defenders can patch. This isnβt hypothetical: Googleβs threat intelligence team has already reported the first zero-day exploit built with AI, caught being used in the wild. The deluge is real, and itβsΒ here.
Breaking the Patch Sound Barrier: Your Vulnerability Remediation Will Not Keep Up With AI Exploitβ¦
Since Mythos, AI-powered defenses have emerged just as fast: autonomous agents that find and fix vulnerabilities in source code, tools that rewrite code to eliminate whole classes of bugs, frontier models utilized by defenders.
But hereβs what gets lost in the arms race: the fundamentals are more important now than they have ever been. When you canβt out-find or out-patch the machines, what saves you is the boring, durable work done wellβββknowing your environment, limiting how far a break-in can spread, fixing root causes. AI raises the ceiling on both attack and defense; it doesnβt change what good defense is made of. And defending against AI-speed attacks doesnβt always require AIβββsometimes it just requires the fundamentals, done well atΒ scale.
One new note to add. Recent incidents like this made some people state that βbasics donβt matter, machines will find a way.β To me it means that basics do matter, but consistency and scale are MUCH more critical. After all, and this is a silly example, no machine can find a buffer overflow if you code in Rust. And, yes, sadly, this means you need to be βnear perfectβ, but hey good newsβββwith the same machines you can. So this is not a boring βdo the basics pleaseβ post, this is a reminder that you need to scale them withΒ AI.
Why the urgency is real (and different thisΒ time)
Why act now, if youβve heard βdo the fundamentalsβ for twenty years? Because the gap between discovery and exploitation is effectively goneβββaccording to some sources, high-severity flaws are now exploited within hours, sometimes before a public proof-of-concept exists, and the damage is material, widespread, and accelerating.
A program that assumes days or weeks to respond was built for a world that no longer exists. The fundamentalsβββvisibility, segmentation, processβββare what absorb the shock when patching inevitably falls behind. And this holds whether AI capabilities jump or improve gradually: the actions needed today are largely theΒ same.
AI made finding vulnerabilities cheap. The attackers noticed. The answer isnβt panicβββitβs the fundamentals done well atΒ scale.
Breaking the Patch Sound Barrier Part 2: So Is The Apocalypse Coming and What Is It?
Start by reverse-engineering the impossible
Before any playbook, one exerciseβββbecause it does more to find your real gaps than any framework will.
Imagine you could patch any vulnerability within 15 minutes of its release, as if by magic. Now work backwards: what would have had to be true? Youβd need to know instantly what you run and where itβs exposed. Youβd need testing so automated that a fix ships safely in minutes. Youβd need no legacy that resists change, and an architecture built to absorb it. Youβd need to have already eliminated whole classes of bugs, so there were fewer to patch atΒ all.
You will never hit 15 minutes across the environmentβββlegacy systems guarantee it. But the gap between that fantasy and your reality is the most honest map you will ever get of where your program breaks. Every item in the playbook below is something that this exercise surfaces.
The Playbook: Fundamentals at AI Scale andΒ Speed
Each of these is written as what to do and how to actually get it doneβββbecause the advice-to-adoption gap is where most programsΒ die.

The four moves: SEE β DECIDE β CONTAIN βΒ RUN
- SEEβββknow your environment, and keepΒ watching
- The play: Map your environment (configuration graph)βββwhat you run, whatβs exposed to the internet, and how far one compromise can spread. Then keep watching: observability across your own environment, and threat intelligence for the outside view, so you know the moment a bug in vendor software starts being exploited in theΒ wild.
- The advantage: The graph pays for itself immediatelyβββdead code, unused open-source packages, and forgotten internet-facing servers you can simply removeβββand itβs the asset list every other move depends on. Threat intel buys you early warning: you hear a vendor bug is being exploited when itβs announced, not when it hits you, so a compensating control can be in place before an attackerΒ arrives.
- If you skip it: You defend blindβββthe breach starts at the asset you didnβt know you owned, and you learn about it from someoneΒ else.
2. DECIDEβββspend your limited capacity where itΒ matters
- The play: Prioritize by real exploitability, not raw severityβββa βmediumβ on an internet-facing service one hop from customer data beats a βcriticalβ on an isolated internal box (recently chains of Lows and Mediums were used in real compromises as well). Run two lanes: your own code you can fix, refactor, or rewrite; vendor code you canβt touch, so that lane is compensating controls and faster detection.
- The advantage: Your finite capacity goes to the few findings that could actually hurt youβββand every flaw gets a response you can execute: a fix where you can, a shield where youΒ canβt.
- If you skip it: Busy but not saferβββcapacity burned on findings no attacker could reach while the one exploitable path stays open, and months of exposure waiting on a vendor patch you could have mitigated inΒ days.
3. CONTAINβββmake sure one bug canβt become aΒ breach
- The play: Segmentation splits the environment so a foothold in one place canβt reach the rest. Zero trust and least privilege make every person, service, and AI agent prove each requestβββand grant only the access it needs. When you canβt patch fast, mitigate: block the exploit path or take the exposed component offline. And when the same bug class keeps returning from the same code, fix the root causeβββrewrite memory-unsafe components in a memory-safe language instead of patching the same flawΒ forever.
- The advantage: One exploited bug stays a contained incident instead of a company-wide breachβββand containment keeps working even when patching canβt keepΒ up.
- If you skip it: One bug becomes the whole environmentβββthe first agentic ransomware ran its entire chain through doors these basics would have closedβββand unfixed root causes bring the same bug class back everyΒ quarter.
4. RUNβββmake it continuous, and govern what runsΒ it
- The play: Make scanning and fixing continuous and automatic, not quarterlyβββwith the process defined before you accelerate: human-in-the-loop approval before fixes ship, a tested rollback path for when one goes wrong, and every AI agent wrapped in identity, least privilege, and human review from dayΒ one.
- The advantage: Machine-speed remediation thatβs safe to runβββand the whole playbook becomes a daily operating discipline instead of a one-timeΒ project.
- If you skip it: Quarterly scans mean months of exposure between runs; automation without approvals and rollback breaks production at machine speed; and an ungoverned agent becomes your newest insiderΒ threat.
None of these are new controls. Whatβs new is the bar. AI changed the speed and scale of the attacks, so the fundamentals have to run faster than they used to and cover everything with no exceptions.
The hard part isnβt technical
Every move above lands on someone elseβs roadmap. Many are already on them, some for years. Segmentation changes how infrastructure operates; a continuous fix pipeline changes how developers ship; rewriting memory-unsafe components costs engineering quarters. Expect pushbackβββnot because those teams donβt care about security, but because youβre asking to spend their time against theirΒ goals.
Three things buy the political capital: bring evidence, not mandatesβββthe configuration graph and real exploitability data argue better than any policy memo; co-own the fixβββshow the risk and the trade-off, then let engineering own the how, because a rewrite they choose ships and a rewrite theyβre ordered into stalls; and give leadership one number tying the work to risk reduced, so the effort defends itself at budgetΒ time.
Mandates breed quiet workarounds. Shared evidence and shared credit create movement.
The frontierΒ agrees:
Anthropic, having surfaced the scale of the problem with Mythos, has focused on the fix: an automated pipeline that investigates, validates, and patches code vulnerabilitiesβββdelivered through Claude Codeβββwith human review before anythingΒ ships.
Google frames it as AI threat defense: using AI across the whole vulnerability management lifecycleβββfinding, fixing, detecting, respondingβββwrapped in a framework and human review. The emphasis is on managing the end-to-end process, not any singleΒ tool.
OpenAI focuses on cyber-focused modelsβββsuch as the GPT-5.6 series (including the Sol model)βββwhich are designed to assist defenders with vulnerability identification, red teaming, and security validation, shifting the approach toward high-reasoning, specialized models capable of handling complex securityΒ tasks.
Different bets, same conclusion: none of them claims AI fixes vulnerability management for youβββevery one wraps the capability in process and humanΒ review.
The real reckoning
The vulnerability deluge is real, whatever you call it: AI made finding bugs cheap, and cheap discovery means more exploitation and more damage. But the reckoning isnβt that AI broke defenseβββitβs that the fundamentals matter more than they ever have. Use AI to find, to fix, and to move faster than you thought possible. But map your environment, limit how far a break-in can spread, fix the root causes, and keep a human on the decisions thatΒ matter.
Get the fundamentals rightβββthat was always the strategy; now itβs the only one. Which of these is your program most under-invested in? Thatβs the conversation worthΒ havingβ¦
P.S. This came out a bit too high-level, but this is admittedly for the high level audienceβ¦
Further reading andΒ sources:
- βBreaking the Patch Sound BarrierβΒ series
- Security incident disclosureβββJuly 2026 (boring title awardΒ winner!)
- Google Secure AI Framework (SAIF)
- Google Threat Intelligence Group on the first AI-developed zero-day observed in the wildΒ (2026).
- CoSAI Shared Responsibility for AIΒ Security
- Anthropicβββthe post-Mythos code-patching pipeline via ClaudeΒ Code
- Zero risk isnβt the job: a CISOβs guide to agenticΒ AI
- First Take: OpenAIβs Hugging Face HackβββCISOs Must Focus on Fundamentals and Ignore the Hype (Gartner access required)
Beyond the Vulnerability Apocalypse: Scaling Your Basics and Vulnerability Management was originally published in Anton on Security on Medium, where people are continuing the conversation by highlighting and responding to this story.


