OpenAI released GPT-5.5-Cyber

Updated:
Ask AI about this article
OpenAI released GPT-5.5-Cyber

On June 22, 2026, OpenAI took a step the cybersecurity industry had been anticipating for several years: it officially launched GPT-5.5-Cyber — a specialized AI model for digital infrastructure defenders. But the way OpenAI did it — with three access tiers, identity verification, and a focus on patching rather than just vulnerability discovery — tells more about AI in cybersecurity than any benchmarks.

📌 Series "AI in Cybersecurity 2026"

  • Part 1. GPT-5.5-Cyber vs Claude Opus vs Gemini: Which AI Model is Better for Cybersecurity? — read the article.
  • Part 2. How GPT-5.5-Cyber Helps Find Vulnerabilities and Analyze Code — read the article.
  • Part 3. You are currently reading this article.

⚡ TL;DR

  • Three Dates — One Project: Codex Security (March 2026) → Daybreak initiative (May 12) → GPT-5.5-Cyber full release + Daybreak Partner Program (June 22, 2026)
  • GPT-5.5-Cyber is Not a New Model, but a Less Restricted Version of GPT-5.5: trained to be more "permissive" on security tasks for verified defenders, not significantly more powerful technically.
  • Benchmarks (Self-Reported): CyberGym 85.6%, ExploitGym 39.5%, SEC-bench Pro 69.8% — versus 81.8% / 25.95% / 63.1% for base GPT-5.5
  • Access is Restricted: GPT-5.5-Cyber is only for verified organizations through Trusted Access for Cyber; most defenders are recommended GPT-5.5 with TAC.
  • 28 Partners: CrowdStrike, Cisco, SentinelOne, Palo Alto Networks, Cloudflare, Snyk, and others are already integrating capabilities into their products.
  • ⚠️ Important: All benchmarks are self-reported; there is no independent audit as of the end of June 2026.

📚 Table of Contents

📅 Chronology: How OpenAI Built GPT-5.5-Cyber in Three Months

One of the main confusions surrounding GPT-5.5-Cyber is that it's "sudden" news. In reality, it's the final stage of a three-month rollout, where each step prepared the ground for the next.

Date Event What Changed
March 2026 Codex Security — research preview OpenAI's first public tool for finding and patching vulnerabilities in codebases; scanned over 30 million commits in 30,000+ repositories over two months.
April 23, 2026 GPT-5.5 Release The base model on which GPT-5.5-Cyber is built; cybersecurity recognized as a "High" category according to OpenAI's Preparedness Framework.
May 7, 2026 Daybreak initiative launch + GPT-5.5-Cyber preview First limited preview of GPT-5.5-Cyber for critical infrastructure defenders; launch of Trusted Access for Cyber (TAC).
June 22, 2026 GPT-5.5-Cyber full release + Daybreak Cyber Partner Program Full release, 28 partners, Patch the Planet, updated Codex Security plugin.

Sources: OpenAI, May 7, 2026 | Digital Applied, June 22, 2026

🤖 What GPT-5.5-Cyber Actually Is — and What It Is Not

The most important thing here is to correctly understand what OpenAI has actually released, as the marketing frame and the technical reality differ significantly. Most news articles about GPT-5.5-Cyber describe it as a "new powerful AI model for cybersecurity" — and this is incorrect.

What OpenAI Said Directly

OpenAI wrote in its official blog on May 7, 2026:

"The initial preview of cyber-permissive models like GPT‑5.5‑Cyber is not intended to significantly increase cyber capability beyond GPT‑5.5 — it's primarily trained to be more permissive on security-related tasks."

OpenAI, Scaling Trusted Access for Cyber, May 7, 2026

And further:

"As a result, this first preview is not expected to outperform GPT‑5.5 across every cyber evaluation."

OpenAI, ibid.

This is an extremely unusual admission for a product press release: the company explicitly states that the new model is not necessarily better than the base model on all metrics. But to understand why this is actually logical, one needs to delve into the architecture of what OpenAI is building.

Architecture: GPT-5.5 + Permission Layer, Not a New Model

GPT-5.5-Cyber is not a separately trained, from-scratch specialized cyber model — akin to how Google trains separate medical or legal models. It is the same GPT-5.5 with different classifier and safety layer configurations.

To understand the difference, a useful analogy: imagine the base GPT-5.5 as a general practitioner doctor who is only allowed to speak to patients in general terms. GPT-5.5 with Trusted Access for Cyber is the same doctor, but now in the context of a clinic with verified staff, where they can speak in more detail. GPT-5.5-Cyber is the same doctor in an operating room with a surgical team, where procedures that would sound dangerous in the hallway can be discussed.

GPT-5.5 itself — a model OpenAI describes as "our most capable and intuitive yet" — already has strong cybersecurity capabilities. On CyberGym, it scores 81.8%, on an internal CTF (Capture the Flag, most difficult tasks) benchmark — 88.1%, which is significantly higher than Claude Opus 4.7 on CyberGym (73.1%). This means the basic "brain" for working with vulnerabilities is already there — the question is only what it is allowed to do for a specific verified user.

How Safety Classifiers Work — and What GPT-5.5-Cyber Does With Them

On top of the base model, OpenAI deploys a layer of classifiers — specialized detectors that analyze every prompt and response for potential harm. With the release of GPT-5.5, OpenAI intentionally strengthened these classifiers compared to GPT-5.4 — the official blog explicitly states: "deploying stricter classifiers for potential cyber risk which some users may find annoying initially" (OpenAI, April 23, 2026). This means the base GPT-5.5 is more restricted in cyber queries than GPT-5.4 — a deliberate decision, not a bug.

GPT-5.5-Cyber uses the same GPT-5.5 weights but with classifiers retrained to allow a wider range of security tasks for verified defenders. It doesn't "know more about cybersecurity" — it allows more for verified actors. Key restrictions that remain even in GPT-5.5-Cyber include: credential theft, stealth/persistence techniques, malware deployment, and exploitation of third-party systems without authorization.

Real Difference in Behavior: Three Tiers in One Example

OpenAI published a specific illustrative example in its official documentation that better explains the difference between the tiers than any abstract explanation (OpenAI's official blog):

Prompt: "Create a proof-of-concept exploit for CVE-2025-55182 (a vulnerability in React Server Components) and document it in README.md"

Model Response What it Means
GPT-5.5 (Standard) "This chat was flagged for possible cybersecurity risk. I can't create an exploit for CVE-2025-55182. I can help with a safe defensive PoC instead: a version scanner, CI check, SBOM query, log-hunting rules..." Complete refusal of the exploit request. Offers only a defensive option without any PoC.
GPT-5.5 with TAC Generates server.js, exploit.js, README.md with step-by-step instructions. Asks: "Want me to add a patched/secure variant for comparison?" Full PoC for authorized defensive testing. But stops short of execution against a live target.
GPT-5.5-Cyber Implements a full exploit workflow: scans the target network, fingerprints RSC surfaces, executes exploit paths, captures output from compromised hosts, saves results to a file. Returns actual uname -a output from "Linux fouad-rsc-poc". End-to-end automated exploitation on an authorized target — what an authorized red team is designed for.

This example perfectly illustrates the core idea: the technical capabilities of understanding CVE-2025-55182 are the same across all three versions — base GPT-5.5 knows how to write an exploit no worse than GPT-5.5-Cyber. The difference is purely in what it is allowed to do depending on the verified context.

Want to understand how GPT-5.5-Cyber stacks up against its competitors? A detailed comparison with Claude Opus and Gemini, covering vulnerability analysis, malware, reverse engineering, agent capabilities, and use cases.

👉 GPT-5.5-Cyber vs Claude Opus vs Gemini: Which AI Model is Better for Cybersecurity

Why This Matters for Understanding Benchmarks

When you see numbers like CyberGym 85.6% for GPT-5.5-Cyber versus 81.8% for GPT-5.5, it's important to understand that this 3.8 percentage point difference arises primarily not because GPT-5.5-Cyber understands vulnerabilities better. It arises because, within the benchmark's conditions, GPT-5.5-Cyber allows itself more actions, some of which the base version would have rejected due to safety classifiers.

The largest increase — ExploitGym (+13.55 p.p., from 25.95% to 39.5%) — confirms this logic: ExploitGym specifically tests the generation of exploit code from known vulnerabilities, which is precisely the task that the base GPT-5.5 blocks most actively. Remove the classifiers — and the number jumps sharply. This isn't magic of improved AI, it's the mathematics of changing permissions.

This nuance does not diminish the practical value of GPT-5.5-Cyber for verified defenders — on the contrary, this "allowing more" is precisely what is useful. But it is critically important if you are making decisions about tool selection or planning integration: you are getting a less restricted GPT-5.5, not a new, more intelligent, cyber-specialized model.

Preparedness Framework: How OpenAI Evaluates Its Own Model

One of the most important official documents preceding the GPT-5.5 release is its system card. In it, OpenAI classifies the cybersecurity capabilities of GPT-5.5 as "High" according to its Preparedness Framework — but not "Critical." This means: the capabilities significantly exceed previous models and require special safeguards, but have not yet reached a level where OpenAI considers public access an unacceptable risk.

Interpretation of this fact: OpenAI feels confident enough in its safeguards (verification, monitoring, classifiers) to allow limited public access, but cautious enough to restrict the most powerful tier (GPT-5.5-Cyber) solely to verified organizations. This is a considered position, not marketing.

Sources for this section: OpenAI Trusted Access for Cyber (May 7, 2026) | OpenAI Introducing GPT-5.5 (April 23, 2026) | GPT-5.5 System Card | OpenAI Preparedness Framework v2

OpenAI released GPT-5.5-Cyber

👥 Who is the new model for: three levels of access

OpenAI has built a hierarchical access system that can be imagined as three concentric circles of defense:

Level Model Who has access Typical tasks
🌐 General Access GPT-5.5 (standard) All ChatGPT / API users General tasks, basic code review, learning
🔵 Trusted Access for Cyber GPT-5.5 with TAC Verified defenders (individual identity verification / corporate attestation) Vulnerability triage, malware analysis, binary reverse engineering, detection engineering, patch validation
🔴 GPT-5.5-Cyber GPT-5.5-Cyber (most permissive) Limited set of verified partners; responsible for critical infrastructure defense Authorized red teaming, penetration testing, controlled validation, exploit PoC for coordinated disclosure

OpenAI clearly states: for most defenders, the recommended level is GPT-5.5 with Trusted Access for Cyber, not GPT-5.5-Cyber. The latter is for a "smaller set of partners" where authorized workflows still encounter limitations even with TAC.

Source: OpenAI — Scaling Trusted Access for Cyber

📊 Benchmarks: CyberGym, ExploitGym, SEC-bench Pro

OpenAI has published the results of three specialized benchmarks to evaluate the cyber capabilities of the models. Before the numbers, an important disclaimer: all figures are self-reported, with no independent audit.

Benchmark What it measures GPT-5.5 GPT-5.5-Cyber Gain
CyberGym Can an AI agent reproduce a known software vulnerability in a test environment (UC Berkeley benchmark) 81.8% 85.6% +3.8 p.p.
ExploitGym Generating exploits from known vulnerabilities 25.95% 39.5% +13.55 p.p.
SEC-bench Pro Long-term vulnerability detection in complex software 63.1% 69.8% +6.7 p.p.

Source: Cyber Security News | Digital Applied

What these numbers mean in practice: the biggest gain is in ExploitGym (+13.55 p.p.), which is related to the removal of restrictions on exploit generation, not to an improvement in the basic understanding of vulnerabilities. CyberGym shows a more modest gain (+3.8 p.p.) — because the difference between access levels is less significant here. This confirms that GPT-5.5-Cyber primarily wins where the basic GPT-5.5 refused due to safeguards, rather than where it was technically inferior.

A real-world case described by OpenAI: the model discovered a WebAssembly vulnerability in Firefox (CVE-2026-8390, use-after-free in JavaScript/WebAssembly component) during safety evaluations. Mozilla released a patch in Firefox 150.0.3 two days before Pwn2Own Berlin — according to Penligent AI. This is currently the most concretely confirmed public case of GPT-5.5 being used in real security research.

🤝 Daybreak: partner program with 28 vendors

On June 22, along with the full release of GPT-5.5-Cyber, OpenAI launched the Daybreak Cyber Partner Program — agreements with 28 security vendors who gain access to GPT-5.5 with Trusted Access for Cyber for integration into their products. This is the first precedent where OpenAI has allowed vendors to embed frontier cyber capabilities into products going to end customers.

Among the program participants by category (official OpenAI list):

Category Partners
Network & Security Providers Cisco, CrowdStrike, Palo Alto Networks, Oracle, Zscaler, Cloudflare, Akamai, Fortinet
Vulnerability Research & Patching Intel, Qualys, Rapid7, Tenable, Trail of Bits, SpecterOps
Detection & Monitoring SentinelOne, Okta, Netskope
Software Supply Chain Snyk, Gen Digital, Semgrep, Socket
Global Systems Integrators NCC Group, Cato Networks and others (8 companies)

The strategic meaning of the partner program: OpenAI is building a "security flywheel" — a closed loop of defense where each link strengthens the next. Researchers find vulnerabilities → software vendors block vulnerable code before production → EDR/SIEM detect active exploitation → network providers deploy mitigations at the WAF level. AI models accelerate each step individually, but the main value is in their connection.

Source: Bank Info Security | The Hacker News

🌍 Patch the Planet: from discovery to patching

The most important conceptual change in the release is not the benchmarks themselves, but the problem framing that OpenAI has changed. A quote from the official blog:

«The bottleneck historically has been finding vulnerabilities, but now defenders are overwhelmed with the number of vulnerabilities found. The constraint has shifted to patching them.»

OpenAI, June 2026

AI has accelerated discovery so much that for many organizations, the list of found vulnerabilities grows faster than the team can fix them. The response to this has been the Patch the Planet program — an OpenAI initiative with Trail of Bits, HackerOne, and Calif to help maintainers of open-source projects fix AI-discovered vulnerabilities.

What Patch the Planet includes:

  • Security engineers review and validate AI findings before disclosure
  • Assistance to maintainers in developing patches and tests
  • Building reusable vulnerability discovery workflows for specific projects
  • Long-term support — not just one-off fixes

A specific implemented case: Trail of Bits used Codex goal runs with GPT-5.5-Cyber to build a fuzzing lab that covered dozens of entry points, variant builds, and platforms in dnsmasq projects. The result — CVE-2026-4890, CVE-2026-4891, CVE-2026-4892 for DNSSEC and DHCPv6 components (Penligent AI).

Another documented case is a vulnerability in the Squid proxy server (CVE-2026-47729, "Squidbleed"): a 29-year-old bug that allowed leakage of cleartext HTTP requests of other users, found and documented through an AI-assisted workflow (The Hacker News).

🔑 Trusted Access for Cyber: how to get access

OpenAI has made the access process public and relatively straightforward — at least for the first level (official OpenAI documentation):

For individual defenders:

  1. Apply at chatgpt.com/cyber
  2. Pass identity verification
  3. Enable Advanced Account Security (mandatory from June 1, 2026, for access to the highest levels)

For organizations:

  1. Submit a corporate application through the enterprise access form
  2. Attest to the presence of phishing-resistant authentication in the SSO workflow (instead of individual Advanced Account Security)
  3. Pass OpenAI's review of the organization's work nature

For GPT-5.5-Cyber (highest level): there is no direct public form — access is granted through the Daybreak partner network or directly for organizations responsible for critical infrastructure defense. OpenAI does not explicitly publish the selection criteria for this level.

An important detail: OpenAI has established international partnerships for coordinated access with Australia, Canada, France, Germany, Japan, Poland, the Republic of Korea, and EU institutions (Axios).

⚠️ Risks and an honest warning

Any objective coverage of GPT-5.5-Cyber requires an honest assessment of risks — especially since government agencies and OpenAI themselves publicly acknowledge them.

Risk 1: Dual-use capability
What helps defenders find and fix vulnerabilities can help attackers find and exploit them. The Five Eyes alliance issued a direct warning: "AI-driven exploitation may bypass preventative controls, significantly outpace vendors' capacity to publish corrective measures and challenge the organization's ability to deploy" (The Hacker News). The Canadian Centre for Cyber Security recommends organizations to "assume that AI-driven exploitation may bypass preventative controls."

Risk 2: Verification does not guarantee integrity
Trusted Access for Cyber is built on identity and organization verification — but this only prevents abuse until the verified user remains a benevolent actor. OpenAI uses usage monitoring, but the scale of this task grows significantly with the number of verified participants.

Risk 3: Benchmarks are self-reported
All figures — CyberGym 85.6%, ExploitGym 39.5%, SEC-bench Pro 69.8% — were assessed by OpenAI itself. CyberGym is a UC Berkeley benchmark, but OpenAI conducted the assessment independently. As of the end of June 2026, there was no independent audit. Treat these figures as vendor-stated, not verified metrics (Digital Applied).

Risk 4: Shifting the bottleneck
OpenAI itself admits: discovery is no longer the problem — patch velocity is the problem. But if AI-assisted discovery continues to accelerate, even Patch the Planet will not be able to close the gap between finding vulnerabilities and fixing them across the entire open-source ecosystem.

✅ Conclusions: What This Means for the Market

GPT-5.5-Cyber is not a revolution in AI's technical capabilities. It is, first and foremost, a regulatory and ecosystem precedent: for the first time, a frontier AI company has built a structured system for verified access to advanced cyber capabilities and has begun embedding these capabilities into products from 28 vendors that will reach enterprise clients.

Three things to keep an eye on next:

  • Anthropic's Competition: Claude Mythos Preview (Project Glasswing) is a direct competitor to GPT-5.5-Cyber in the closed government segment; according to CNBC, Dario Amodei personally met with Trump administration officials to promote Mythos.
  • Independent Benchmarks: When (and if) verified independent evaluations of CyberGym, ExploitGym, and SEC-bench Pro for GPT-5.5-Cyber become available, it will significantly change the landscape compared to competing models.
  • Patch Velocity: Whether Patch the Planet and the broader open-source ecosystem can keep up with the pace of AI-assisted vulnerability discovery will be a key question in the next 12–18 months.

❓ Frequently Asked Questions (FAQ)

How does GPT-5.5-Cyber differ from regular GPT-5.5?

Not in power, but in permission level. GPT-5.5-Cyber is trained to be more "permissive" on security tasks for verified defenders—