Cloudflare wants to stop chasing vulnerabilities one patch at a time. On September 3, 2026, the connectivity cloud company announced Vulnerability Discovery and Remediation, a new AI-powered service that pairs OpenAI’s Daybreak security models with Cloudflare’s own network traffic data to find, prioritize, and fix software flaws before attackers reach them. The service is live in early access through Cloudflare Managed Defense, available by invitation to select Cloudflare Enterprise customers.
The timing is not an accident. According to figures Cloudflare cited around the launch, the U.S. National Vulnerability Database had already logged 60,475 vulnerabilities by early September 2026, compared with 48,185 for all of 2025. That means the disclosure count for 2026 topped last year’s full-year total with roughly four months still left on the calendar, a pace that has security teams drowning in scanner output long before they can figure out which findings actually matter.
Cloudflare Launches AI-Powered Vulnerability Discovery and Remediation
Vulnerability Discovery and Remediation is built to close the gap between a scanner flagging a problem and a developer actually shipping a fix. Cloudflare frames that gap as one of the most dangerous windows in a vulnerability’s life span, the stretch where an issue is known but still exploitable. The official Cloudflare press release describes a workflow of four steps: deep code investigation, prioritization using production traffic and security signals, preparation of edge mitigations, and proposal of code patches back to developers.
What sets this apart from a standard static analysis tool is context. Cloudflare’s global network already sees which routes inside a customer’s application receive real traffic, how much, and whether any of it looks suspicious. That telemetry gets folded into the risk score for every vulnerability the AI finds, so a flaw sitting behind a rarely used endpoint ranks differently than the same bug sitting behind a route already drawing probing requests.
Inside GPT-5.6 Cyber and the OpenAI Daybreak Partnership
The AI engine behind the service is GPT-5.6 Cyber, a specialized security model that OpenAI built as part of its Daybreak cybersecurity program. Daybreak is OpenAI’s effort to put frontier reasoning models into the hands of vetted defenders under controlled access, rather than releasing general-purpose models that could just as easily help an attacker probe for holes. Cloudflare’s integration runs through what the two companies call the OpenAI Daybreak Defense Network.
OpenAI describes the underlying product directly on its own site. As OpenAI’s official Daybreak page puts it, “Daybreak brings together the frontier cyber capabilities OpenAI’s models, Trusted Access for Cyber, Codex Security workflows, and ecosystem partners to help approved defenders validate vulnerabilities, prioritize risk, generate and test fixes, and produce evidence inside existing security and development workflows.” The same page adds that “organizations across the public and private sectors can work with OpenAI Daybreak to identify, validate, and remediate vulnerabilities across the software they build and rely on.”
McCall McIntyre, OpenAI’s Head of Global Cyber Partnerships, put the mission behind the partnership in blunter terms in Cloudflare’s launch announcement: “Our goal through the OpenAI Daybreak Defense Network is to give defenders the advantage of frontier AI, safely.” McIntyre added, “We are excited to team up with Cloudflare to put proactive, AI-driven security directly into the hands of enterprise defenders.”
Dane Knecht, Cloudflare’s CTO, framed the collaboration in similar terms on OpenAI’s own cybersecurity solutions page. “We’re excited about the potential of OpenAI’s cyber capabilities to bring stronger reasoning and more agentic execution into security workflows,” Knecht said. “It’s a big step forward for teams to be able to leverage frontier models not only to accelerate velocity, but also to improve their security posture.”
How the Discovery Workflow Actually Works
The process starts before any AI model gets involved. Cloudflare’s system first maps which routes in a customer’s application are actually receiving traffic, how heavily, and what security events have already fired against them. A reconnaissance agent then correlates those request paths back to specific sections of the underlying code. Only after that mapping exists do additional agents search the correlated code for exploitable weaknesses. For applications running on Cloudflare Workers, the pipeline pulls in data from Workers Observability to sharpen that correlation further.
This is a deliberate departure from how most vulnerability scanners operate. A conventional scanner reads code (or a running binary) and flags anything that matches a known-bad pattern, without knowing whether that code path ever gets hit by a real request. Cloudflare’s pitch is that tying discovery to live traffic patterns cuts down the noise problem that has plagued vulnerability management for years: too many findings, with no reliable signal for which ones need attention this week versus this quarter.
Two Remediation Paths: WAF Rules and Code Patches
Once a vulnerability clears validation, Cloudflare’s service can propose two different fixes. The first is a custom rule for Cloudflare’s Web Application Firewall, scoped tightly to the specific request pattern that exposes the flaw, things like the HTTP method, the URL path, and other request characteristics. That rule can go live at the edge almost immediately, blocking the exploit path while a permanent fix is still in progress. A simplified example of the kind of expression such a rule might use looks like this:
(http.request.uri.path eq "/api/v1/upload" and http.request.method eq "POST" and not cf.client.bot)
The second option is a direct modification to the application’s source code. GPT-5.6 Cyber drafts the patch, but it does not ship on its own. Cloudflare requires human sign-off on both remediation paths: a security or engineering team member has to approve a WAF rule before it activates, and a developer has to review and merge a code patch before it takes effect. Cloudflare has been explicit that no fix, firewall rule or otherwise, goes live without that explicit human approval step.
Why the AI Model Never Touches Cloudflare’s Edge
Despite the “edge defense” branding, the AI reasoning itself does not run on Cloudflare’s edge network. Prompts are forwarded through Cloudflare’s AI Gateway to OpenAI’s Daybreak models, which run on OpenAI’s own infrastructure. The responses, meaning proposed patches or rule suggestions, are sent back into Cloudflare’s workflow for validation and, ultimately, human review. The model itself has no ability to activate a patch or a firewall rule directly.
Cloudflare also strips context the model does not need before a request goes out, and every AI-generated suggestion passes through checks that sit outside the model itself. If a suggestion fails one of those checks, the workflow halts before the result ever reaches the customer. That separation matters for enterprise buyers who are wary of sending proprietary source code to a third-party model provider, even a trusted one, without guardrails around what gets transmitted and what gets filtered on the way back.
The Vulnerability Numbers Driving This Launch
The scale of the underlying problem is worth sitting with. The table below shows how fast disclosed vulnerabilities have piled up, based on the National Vulnerability Database figures Cloudflare cited around its announcement.
| Period | Vulnerabilities Logged in NVD | Notable Detail |
|---|---|---|
| Full year 2025 | 48,185 | Baseline for annual disclosure volume |
| 2026, through early September | 60,475 | Already about 25% above the entire 2025 total |
| Remaining months in 2026 | Unknown, projected higher | Roughly four months of disclosures still to come |
| Typical enterprise scanner backlog | Thousands per organization | Cited by Cloudflare as the core triage problem it targets |
That growth curve is the business case for automated triage. Security teams cannot read every CVE that lands in a feed, let alone map each one against their own production traffic, by hand. Cloudflare’s argument is that combining AI code review with real network telemetry is the only way to keep the queue of “needs attention now” findings from becoming unmanageable.
Cloudflare’s 2026 AI-Native Security Build-Out
Vulnerability Discovery and Remediation does not exist in isolation. Earlier in 2026, at its Developer Week event, Cloudflare introduced Dynamic Workers, an isolate-based runtime built for AI-generated code that the company says provides secure isolation “at 100x the speed and a fraction of the cost of containers,” scaling to millions of concurrent executions with no warm-up delay. That runtime underpins much of the infrastructure Cloudflare now uses to execute short-lived AI agent tasks, including pieces of its security automation pipeline.
Cloudflare has also been building out Agent Cloud, its platform for hosting and orchestrating AI agents, and had already shipped an AI Security Posture Management product for Zero Trust customers earlier in the year. Vulnerability Discovery and Remediation is the latest layer on top of that stack, and Cloudflare has signaled it sees this as the direction its entire security business is heading: from static rule sets toward AI agents that reason about code, traffic, and risk together.
A Brief History of Automated Vulnerability Remediation
Automated patching is not a new idea, it has just kept failing to close the last mile. Static application security testing tools have flagged code-level bugs for more than two decades, but they were never good at telling developers which of hundreds of findings actually mattered in production. Web application firewalls solved a narrower problem: block known-bad request patterns at the network edge, without ever touching the underlying code. The two disciplines mostly lived in separate tools, run by separate teams, with separate priority lists.
Large language models changed the economics of that second half of the problem, code review and patch drafting, over the past two to three years. GitHub’s Copilot Autofix showed that a model could plausibly suggest a working patch for a flagged vulnerability inside a pull request. What Cloudflare is now attempting is a step further: fusing that code-level reasoning with live network telemetry so the system does not just draft a fix, it also decides how urgently that fix is needed and can throw up a temporary edge block in the meantime. That’s a meaningfully different architecture than either a standalone SAST tool or a standalone WAF has offered before.
How Cloudflare’s Approach Compares to Rivals
Cloudflare is far from alone in racing to bolt AI reasoning onto vulnerability management. Several rivals and OpenAI itself have been shipping adjacent products around the same window, though each is taking a different angle on the problem.
| Company | Product or Initiative | Core Approach |
|---|---|---|
| Cloudflare | Vulnerability Discovery and Remediation | OpenAI Daybreak models plus live edge traffic data; WAF rule or code patch, human-approved |
| OpenAI | Codex Security | Detects vulnerabilities specifically in AI-generated code, separate from the Daybreak defender program |
| Check Point | Expanded OpenAI Daybreak integration | Applies Daybreak models inside its own security product line |
| Checkmarx | Fusion hybrid scanning | Combines traditional static scanning with AI review, aimed at AI-written code |
| CrowdStrike | AI security tooling, including work with AWS | Enterprise-scale AI-driven detection across cloud workloads |
| IBM | Partnership with OpenAI on leak prevention | Uses OpenAI technology to catch exposed source code and secrets |
| Anthropic | Claude-based vulnerability scanning | LLM code review for complex vulnerability classes, without Cloudflare’s edge telemetry layer |
The differentiator Cloudflare keeps pointing back to is telemetry. A code-scanning tool, however good the underlying model, only ever sees the source. Cloudflare’s network reportedly handles trillions of requests a day across millions of web properties, and that data set is what lets it rank a vulnerability by whether it is actually being probed right now, not just by how severe it looks on paper. None of the rival products listed above pair AI code review with that scale of live traffic context, at least not yet.
Market Impact: What This Means for Enterprise Security Budgets
For CISOs, the pitch lands at an awkward moment. Security teams are already stretched by the rising disclosure volume documented above, and many are simultaneously fending off AI-assisted attacks that move faster than manual triage can keep pace with. A tool that promises to compress the gap between “we found a bug” and “we blocked the exploit path” speaks directly to that fatigue, even if it also asks security leaders to trust more of their workflow to a third-party model.
There is a budget angle too. Vulnerability management today usually spans multiple vendors: a scanner, a WAF, a patch management system, and increasingly a separate AI code review tool. Cloudflare is betting that folding discovery, prioritization, temporary mitigation, and patch drafting into one Managed Defense subscription is more attractive than stitching four vendors together, even before pricing for general availability has been set. Rivals bundling their own AI features into existing platforms, from Check Point to CrowdStrike, are making a similar bet, so the competitive question over the next year will be less about who has the best model and more about whose platform already sits closest to where the vulnerability actually lives.
Early Access Limits: Who Can Use It Today
Access right now is narrow by design. Vulnerability Discovery and Remediation is invitation-only, limited to select Cloudflare Enterprise customers, and initial engagements are scoped to a single application per customer rather than an entire portfolio. Cloudflare has not published pricing, nor has it set a timeline for general availability. That caution mirrors how Cloudflare rolled out other AI-native products this year, starting with a small cohort of enterprise accounts before widening access once the workflow proves reliable at scale.
The single-application limit in particular signals that Cloudflare wants real production feedback before it lets the AI loose across a customer’s full application estate. Given that both remediation paths require human approval anyway, the constraint looks less like a technical ceiling and more like a controlled rollout aimed at building trust with the security teams who will ultimately decide whether to approve an AI-drafted patch.
Open Questions and Risks Security Teams Are Raising
The most obvious risk is patch quality. An AI-drafted fix that looks plausible but introduces a subtler bug is arguably worse than no fix at all, since it can create a false sense that the issue is closed. Cloudflare’s answer is the mandatory human review step on every code change, but that also means the tool’s actual time savings depend entirely on how much a reviewing developer trusts a given suggestion without re-deriving it from scratch.
There is also the data flow question. Sending source code snippets, even filtered ones, to a third-party model provider raises the same concerns that have followed every AI coding assistant into the enterprise: data residency, IP exposure, and whether a vendor’s filtering actually strips everything sensitive before a prompt leaves the network. Cloudflare’s answer, that irrelevant context is stripped and that suggestions are checked before reaching the customer, is a reasonable first line of defense, but it has not yet been independently audited by a third party at the time of this launch. Finally, there is a structural dependency risk: building a core security workflow around one model family from one external partner concentrates risk in a way that a mix of in-house and open tooling does not.
What Comes Next: Predictions Through 2027
- General availability arrives within two to three quarters. Cloudflare’s pattern with other 2026 AI launches, including Dynamic Workers and Agent Cloud, has been a short early-access window before wider rollout, and this service is unlikely to stay invite-only much past mid-2027.
- The single-application limit expands to full-portfolio coverage. Once Cloudflare has enough production data on patch acceptance rates, expect the scope restriction to loosen for trusted enterprise accounts.
- Rivals announce their own traffic-aware remediation products. Expect at least one of CrowdStrike, Check Point, or a major cloud provider to publicly tie AI code review to live traffic telemetry within the next twelve months, following Cloudflare’s lead.
- Pricing lands as an add-on to Managed Defense, not a standalone SKU. Given how tightly the service is coupled to Cloudflare’s existing WAF and Workers Observability products, a bundled pricing model is far more likely than an standalone one.
- Scrutiny of AI-generated patches grows as adoption scales. As more enterprises approve AI-drafted code changes, expect security researchers and possibly regulators to start asking pointed questions about audit trails for who approved what, and why.
Frequently Asked Questions
What is Cloudflare Vulnerability Discovery and Remediation?
It is an AI-powered service, launched September 3, 2026, that combines OpenAI’s Daybreak security models with Cloudflare’s network traffic data to find software vulnerabilities, rank them by real-world risk, and propose either a temporary firewall rule or a source code patch.
What is GPT-5.6 Cyber?
GPT-5.6 Cyber is a specialized security model from OpenAI’s Daybreak cybersecurity program. It is the model Cloudflare uses to investigate code, correlate it with traffic patterns, and draft remediation suggestions.
Does the AI model actually run on Cloudflare’s edge network?
No. The model runs on OpenAI’s infrastructure. Cloudflare forwards prompts through its AI Gateway and receives responses back into its own workflow for validation, so the “edge” part refers to where mitigations get deployed, not where the AI reasoning happens.
Who can access the service today?
Access is invitation-only and limited to select Cloudflare Enterprise customers through Managed Defense. Initial engagements are restricted to a single application per customer while Cloudflare gathers production feedback.
How much does it cost?
Cloudflare has not published pricing or a timeline for general availability. Given the current early-access structure, the service is expected to launch as part of a Managed Defense package rather than a separate line item.
Can the AI deploy a patch or WAF rule without a human approving it first?
No. Cloudflare requires explicit human approval before any AI-generated code patch or firewall rule takes effect. The model can propose a fix, but it cannot activate one on its own.
How is this different from a normal vulnerability scanner?
Traditional scanners flag issues based on code patterns alone. Cloudflare’s service adds live production traffic data, so a vulnerability behind a heavily used or actively probed route gets prioritized differently than the same flaw sitting behind a route nobody ever hits.
Is this connected to Cloudflare’s other 2026 AI products?
Yes. It builds on infrastructure Cloudflare introduced earlier in 2026, including the Dynamic Workers runtime for AI agent execution and its broader Agent Cloud platform, and follows an AI Security Posture Management product Cloudflare had already shipped for Zero Trust customers.




