❌

Normal view

Beyond the Vulnerability Apocalypse: Scaling Your Basics and Vulnerability Management

23 July 2026 at 21:40

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.

Kinda sort framework but high level, forΒ sure

The four moves: SEE β†’ DECIDE β†’ CONTAIN β†’Β RUN

  1. 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:


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.

Dora Horjus programmamanager House of Cyber bij NCSC

Het Nationaal Cyber Security Centrum (NCSC) werkt samen met partners toe naar een fysiek β€˜House of Cyber’. Hiermee zorgt het NCSC niet alleen voor een nieuw huis voor zijn medewerkers, maar ook voor een plek waar publieke en private partijen fysiek Γ©n actief kunnen samenwerken aan de cybersecurity van Nederland.

Oplichters klonen nu nieuwswebsites om je bankrekening te plunderen

13 July 2026 at 12:12
Cybercriminelen misbruiken grote nieuwswebsites in het Verenigd Koninkrijk om mensen op te lichten. Aan de hand van artikelen op AI-klonen van o.a. The Guardian en de BBC lokken ze de lezers naar investeringsplatforms met als doel om hun rekening te plunderen.Β 

Beveilig je IP-camera’s om spionage van statelijke actoren te voorkomen

Russische statelijke actoren hacken IP-camera’s om (vitale) infrastructuur van NAVO-landen, waaronder Nederland, te bespioneren. Het NCSC ziet dat niet alleen statelijke actoren misbruik maken van deze camera’s, maar ook hacktivistische groeperingen en cybercriminelen. Daarom roept het NCSC organisaties en thuisgebruikers op om IP-camera’s beter te beveiligen door onder andere je apparaten up-to-date te houden, je netwerk te segmenteren en het aanvalsoppervlak te verkleinen. Lees hieronder ons uitgebreide handelingsperspectief.

Top 6 Managed Detection and Response Providers

10 July 2026 at 14:57

There are several major managed detection and response (MDR) companies to choose from. We’ve compared the main offerings of the best MDR providers to help you decide which is right for your organisation. Maybe it was a near miss, or a security team stretched too thin and drowning in alerts from dozens of tools. Whatever […]

The post Top 6 Managed Detection and Response Providers appeared first on Heimdal Security Blog.

Waren er dan toch Nederlandse criminelen betrokken bij de grote Odido-hack?

De politie heeft sterke aanwijzingen dat cybercriminelen uit ons eigen land een rol speelden bij de Odido-hack van eerder dit jaar. Begin februari kwamen de privΓ©gegevens van miljoenen Nederlanders op straat te liggen.Β 

Cyber-Aware Customers Are Raising the Bar for MSPs and Other VendorsΒ 

8 July 2026 at 11:19

Your client is no longer just buying your security advice. They’re auditing whether you live by it.Β  That was a clear message from my exclusive interview withΒ Heather MacDonald Alford,Β an MSP finance specialist and owner ofΒ Counting Creators.Β  Heather’sΒ exactly the kind of customer MSPs should be paying attentionΒ to. She’sΒ informed, commercially minded, and willing to challenge vendors to […]

The post Cyber-Aware Customers Are Raising the Bar for MSPs and Other VendorsΒ  appeared first on Heimdal Security Blog.

Cyberbeveiligingswet en Wet weerbaarheid kritieke entiteiten vanaf 15 augustus 2026 van kracht

De Eerste Kamer heeft op 7 juli ingestemd met de Cyberbeveiligingswet (Cbw) en de Wet weerbaarheid kritieke entiteiten (Wwke). Hiermee zet Nederland een belangrijke stap in het versterken van de digitale en fysieke weerbaarheid van organisaties tegen toenemende dreigingen.

Versie 2.1 van STIX en TAXII per 1 juli 2026 verplicht voor de overheid

Vanaf 1 juli 2026 zijn de standaarden STIX en TAXII versie 2.1 toegevoegd aan de 'Pas toe of leg uit'-lijst. Dit betekent dat Nederlandse gemeenten, provincies, rijk, waterschappen en alle uitvoeringsorganisaties verplicht zijn om deze nieuwe versies toe te passen. Voor alle andere organisaties in de publieke sector geldt een dringend advies om STIX en TAXII versie 2.1 toe te passen. Ook is het functioneel toepassingsgebied bijgewerkt.

Wissel effectiever dreigingsinformatie uit met STIX/TAXI 2.1

Cyberaanvallen beperken zich zelden tot één organisatie. Kwaadwillenden vallen in veel gevallen meerdere organisaties tegelijk aan. Om te voorkomen dat meerdere organisaties slachtoffer worden, is snelle en gestandaardiseerde uitwisseling van dreigingsinformatie essentieel. Daarom heeft het Nationaal Cyber Security Centrum (NCSC) een aanvraag ingediend om versie 2.1 van STIX/TAXII, die effectieve en geautomatiseerde uitwisseling van dreigingsinformatie mogelijk maakt, op de 'Pas toe of leg uit'-lijst van Forum Standaardisatie op te laten nemen.

Eerste cyberaanval volledig door AI gedaan blijkt keerpunt in digitale veiligheid

Hackers zetten AI in om cyberaanvallen uit te voeren. Cloudbeveiligingsbureau Sysdig deelt dat zij een hack hebben onderschept, die waarschijnlijk volledig door AI werd gedaan. De AI blijkt hardnekkiger en effectiever dan menselijke hackers, waardoor dit moment als keerpunt voor cyberveiligheid kan worden gezien.

How to scale your patches without scaling your team (the patch wave)

3 July 2026 at 17:30

Most breaches don’t start with a vulnerability nobody knew about. They start with one nobody patched in time. Vulnerability exploitation is now the single biggest way attackers get into a network. It has overtaken stolen credentials for the first time in the 19-year history of Verizon’s Data Breach Investigations Report, with 31% of breaches now […]

The post How to scale your patches without scaling your team (the patch wave) appeared first on Heimdal Security Blog.

AI didn’t break patching. It showed us patching was already broken.

3 July 2026 at 13:14

Claude Mythos, an AI model from Anthropic, has found 23,019 software vulnerabilities in the past month. Fewer than 1% of them have been patched. That gap is the story. Finding a vulnerability used to be the hard part, the thing that limited how fast software got fixed. AI just closed that gap to almost nothing. […]

The post AI didn’t break patching. It showed us patching was already broken. appeared first on Heimdal Security Blog.

Heimdal Launches MSP Onboarding Wizard to Help Partners Onboard Microsoft CSP Customers in 2 Minutes

1 July 2026 at 09:55

COPENHAGEN, Denmark, 1 July 2026 – Heimdal today announced the launch of MSP Onboarding Wizard, a new capability that helps managed service providers onboard Microsoft Cloud Solution Provider (CSP) customers inside the Heimdal platform faster and with less manual work. Built for MSPs managing multiple Microsoft tenants, MSP Onboarding Wizard reduces customer onboarding from around […]

The post Heimdal Launches MSP Onboarding Wizard to Help Partners Onboard Microsoft CSP Customers in 2 Minutes appeared first on Heimdal Security Blog.

De Cyberbeveiligingswet in laatste fase van vaststelling

Op 6 en 7 juli 2026 vergadert de Eerste Kamer over de Cyberbeveiligingswet (Cbw). Dan zal er ook over het wetsvoorstel worden gestemd. Als de Eerste Kamer het wetsvoorstel aanneemt, treedt de Cbw naar verwachting op 15 augustus 2026 in werking. Organisaties die onder de wet vallen, krijgen dan te maken met nieuwe verplichtingen op het gebied van digitale weerbaarheid.

How Dynamic Defense shuts an attacker out without shutting down the business

26 June 2026 at 17:49

AI has handed hackers a resource advantage. Winning it back means spending your own resources far more precisely, and that’s the strategy we call Dynamic Defense. The principle is simple. Contain the threat just enough, for just long enough, until the risk is removed. This piece shows how that works as a five-stage loop that […]

The post How Dynamic Defense shuts an attacker out without shutting down the business appeared first on Heimdal Security Blog.

Static security has run out of road. The case for Dynamic Defense

26 June 2026 at 12:10

AI has flipped the economics of cybersecurity in the attacker’s favor. For most of the last decade, defenders held the cost advantage, buying down their risk with a stack of largely static controls. That advantage is gone, and winning it back is the central problem facing every security team in 2026. I think the answer […]

The post Static security has run out of road. The case for Dynamic Defense appeared first on Heimdal Security Blog.

Breaking the MSP Echo Chamber: The Power of Community

24 June 2026 at 13:46

MSPs spend too much time talking to other MSPs and not enough time talking to the people they’re supposed to serve.Β  That’s Paul Croker’s view of some of the channel’s biggest growth problems. Β  While most industry events bring technology professionals together, they rarely put them in the same room as the business leaders making […]

The post Breaking the MSP Echo Chamber: The Power of Community appeared first on Heimdal Security Blog.

Populaire wachtwoordmanager heeft wederom te maken met een datalek

24 June 2026 at 11:11
Gebruikers van LastPass hebben wederom slecht nieuws gekregen. Het bedrijf achter de populaire wachtwoordmanager heeft laten weten dat er op 23 juni wederom een datalek is geweest, waarbij de gegevens van klanten zijn gestolen.Β 

How attackers built a RAT on a Windows machine using its own .NET compiler

22 June 2026 at 16:37

In May 2026 an attacker compromised a UK medical practice endpoint without delivering a single malicious file. They used PowerShell and the .NET compiler built into Windows to build a Remcos remote access trojan on the machine itself, so signature antivirus had no known sample to match. The thing that caught it was DNS filtering, […]

The post How attackers built a RAT on a Windows machine using its own .NET compiler appeared first on Heimdal Security Blog.

❌