On May 11, 2026, OpenAI launched Daybreak: a cybersecurity initiative that repositions Codex Security from a developer coding tool into an enterprise application security platform. The core bet is that the same agentic reasoning that made Codex useful for writing code can be pointed at repositories to build threat models, confirm vulnerabilities, and propose patches — without a human reviewer doing the slow parts.
The competitive pressure is real. In April 2026, Anthropic launched Project Glasswing, a defensive-security initiative built on Claude Mythos Preview — a frontier model Anthropic has kept out of public release specifically for vulnerability research. In the program’s first-month update, partners reported more than 10,000 high- or critical-severity vulnerabilities found across their systems (6,202 of those across 1,000+ open-source projects specifically), with 75 patched and 65 receiving public advisories by that point. OpenAI’s answer is a three-tier model stack, eight security vendor integrations, and a limited-preview model — GPT-5.5-Cyber — designed for red teaming and penetration testing workflows that standard GPT-5.5 is not permitted to do.
What Daybreak Is
Daybreak is an umbrella initiative, not a single product. It connects three things:
- Codex Security — the application security agent that builds threat models and hunts vulnerabilities
- GPT-5.5 model tiers — three levels of access mapped to different security workflows
- Trusted Access for Cyber — a partner ecosystem of eight security vendors embedding the models
The initiative launched around a clear thesis: defenders need AI that can move at attacker speed. The Daybreak name comes from the framing that defenders need to identify and close vulnerabilities before attackers find them — ideally at commit time rather than at incident time.
Codex Security: The Three-Stage Workflow
Codex Security launched in research preview on March 6, 2026, evolving from Aardvark, OpenAI’s earlier agentic security researcher announced in October 2025. Daybreak gave it a cybersecurity program around it. The agent runs three stages:
Stage 1 — Identify
Codex Security ingests a repository and builds an editable threat model. It maps what the system does, what it trusts, and where it is most exposed. The threat model is not a static checklist. It is a project-specific document you can update as the architecture, risk profile, and business context change.
From the threat model, Codex focuses its analysis on realistic attack paths and high-impact code areas rather than scanning every line with equal weight. The threat-model-first approach is designed to reduce false positives and prioritize findings by exploitability rather than just presence.
Stage 2 — Validate
Codex Security attempts to reproduce each finding in an isolated sandbox before surfacing it. Findings that cannot be validated are flagged as lower-confidence rather than promoted to the primary results. The validation step is what separates this from traditional SAST tools that produce long lists of issues without confirming any are actually exploitable.
The sandbox is OpenAI-hosted, and execution is scoped to the repository’s dependency context. The output includes audit-ready evidence that can be routed into existing ticketing and review systems.
Stage 3 — Remediate
For confirmed vulnerabilities, Codex proposes patches through the existing Codex interface. Reviewers inspect proposed patches before a PR is opened. Codex Security is rolling out in research preview to ChatGPT Enterprise, Business, Edu, and Pro customers via Codex Web, with connected GitHub repositories.
The Three-Tier Model Access Framework
This is the part of Daybreak most relevant to builders trying to understand access controls.
Tier 1 — GPT-5.5 (Standard)
The base model with standard safety constraints. Available to all ChatGPT and API users. Handles general-purpose development, code review, and security documentation without Daybreak-specific tooling.
Tier 2 — GPT-5.5 with Trusted Access for Cyber
Verified defenders get expanded access for:
- Secure code review
- Vulnerability triage and analysis
- Malware behavior analysis
- Detection engineering
- Patch validation workflows
Access requires OpenAI account verification as a legitimate security professional or organization. Beginning June 1, 2026, individual Trusted Access for Cyber members must enable OpenAI’s Advanced Account Security — phishing-resistant sign-in via hardware security key or passkey, with email/SMS recovery disabled — to keep access to the program’s most capable and permissive models; organizations can instead attest that they enforce phishing-resistant authentication through their own SSO. Members who don’t enable it by September 1, 2026 revert to default model access. OpenAI is gating this tier against misuse through account-level monitoring and human review requirements for edge cases.
Tier 3 — GPT-5.5-Cyber (Limited Preview)
The permissive tier. Designed for red teaming, penetration testing, and controlled vulnerability validation in authorized environments. GPT-5.5-Cyber runs fewer safety constraints than standard GPT-5.5, specifically to support offensive security workflows where describing attack paths in detail is the goal.
Access is not public. Organizations request access through OpenAI’s enterprise sales pipeline or through existing Trusted Access partner channels. The model requires phishing-resistant authentication and is subject to account-level monitoring and scoped access controls.
The limited preview framing signals that OpenAI is still calibrating where the safety floor should be for this tier before broader rollout.
CI/CD Integration: The GitHub Action
The most practical entry point for builders is the Codex GitHub Action.
- uses: openai/codex-action@v1
with:
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
permission-profile: ":workspace"
prompt: "Scan this repository for security vulnerabilities and propose fixes."
The action installs the Codex CLI, starts a Responses API proxy using your API key, and runs codex exec under the permission profile and safety strategy you specify. It can be triggered on push, pull request, or a scheduled interval.
Two independent controls matter for security workflows:
permission-profile(beta) — filesystem/network scope::workspacefor an editable checkout,:read-onlyfor scan-only runssafety-strategy— the runner’s own privilege level:drop-sudo(default),unprivileged-user,read-only, orunsafe
For security workflows, :read-only with drop-sudo is the default-safe combination — Codex can scan and report without touching the filesystem. A :workspace profile is appropriate for low-risk automated patching of dependency vulnerabilities with well-understood fix patterns (version bumps, known CVE patches), reviewed before merge. (Older Codex CLI docs described a separate suggest / auto-edit / full-auto approval-mode flag for the standalone CLI; that terminology has been superseded by the approval_policy model — untrusted / on-request / never — and was never an input this GitHub Action accepts.)
Codex Security’s cloud product (via Codex Web, separate from this Action) also scans repository history commit by commit as part of the threat-model workflow described above. That is the baseline configuration for teams that want continuous security coverage without blocking PRs; the GitHub Action above is for ad hoc, prompt-driven runs in CI.
Industry Partners: The Trusted Access for Cyber Ecosystem
Eight security vendors are embedding the Daybreak model tiers under the Trusted Access for Cyber umbrella: Cisco, Oracle, CrowdStrike, Palo Alto Networks, Cloudflare, Fortinet, Akamai, and Zscaler (independently confirmed). The table below reflects each vendor’s known security specialty, not a confirmed per-vendor breakdown of Daybreak integration scope, which OpenAI has not published in detail:
| Partner | Integration Surface |
|---|---|
| Akamai | Edge security, bot detection, API protection |
| Cisco | Network security, SIEM integration |
| Cloudflare | Edge threat detection, WAF |
| CrowdStrike | Endpoint detection, threat intelligence |
| Fortinet | Firewall, network policy analysis |
| Oracle | Cloud infrastructure, database security |
| Palo Alto Networks | NGFW, XSOAR SOAR platform |
| Zscaler | Zero trust network, DLP |
The integration pattern is that these vendors can route customer queries through GPT-5.5 with Trusted Access for Cyber for threat analysis and incident response use cases — without the customer having direct Daybreak access. For builders selling into enterprises that already use these vendors, the relevant question is whether your product sits upstream (developer security tooling) or downstream (enterprise security operations) of where these integrations land.
How This Compares to Anthropic Glasswing
Anthropic launched Project Glasswing in April 2026, powered by Claude Mythos Preview — a frontier model built for vulnerability research that Anthropic has kept out of public release. The framing differs:
- Glasswing/Mythos: Proactive bug-finding at scale, open-source repositories, Claude-native
- Daybreak: Enterprise AppSec pipeline, commercial repositories, security-vendor ecosystem
Glasswing is about demonstrating AI security capability at volume. Daybreak is about integrating AI security into the enterprise development workflow and selling it through established security vendor channels.
For builders, the practical difference is access and audience. Daybreak’s enterprise partner channel reaches security operations teams and CISOs. Glasswing’s open-source focus reaches developer communities and security researchers. Both approaches create market pressure: if your product sits in the AppSec workflow, both initiatives shrink the gap between what developers expect from baseline security tooling and what requires a specialized product.
What This Means for Builders
If You’re Building AppSec Tooling
The threat model-first approach that Codex Security uses is becoming the expected default for AI-assisted security tools. If your product starts with static scanning or pattern matching and surfaces threat-model context as an afterthought, you will face comparison pressure from Codex Security’s approach.
The validation step (sandbox confirmation before surfacing findings) is the more durable differentiator question. Can your tool confirm exploitability, not just presence? If not, your false-positive rate will be a comparison point.
If You’re a Developer Building Production Software
Daybreak’s CI/CD integration is the practical takeaway. Connecting a repository to Codex Security via Codex Web gives you commit-time vulnerability scanning with validation and patch proposals; the openai/codex-action@v1 GitHub Action adds ad hoc, prompt-driven scans inside your own workflows on top of that. The marginal cost is low if you are already on a ChatGPT Enterprise or Pro plan.
The caveat: Codex Security requires a connected GitHub repository through Codex Web. Teams using GitLab, Bitbucket, or self-hosted Git do not yet have native integration paths.
If You’re Building for Security Operations Teams
The Trusted Access for Cyber tier is the relevant access path for security operations use cases. Tier 2 covers the workflows that matter most for SOC teams — triage, detection engineering, patch validation — without requiring GPT-5.5-Cyber’s red-team permissions.
For red-team tooling specifically: GPT-5.5-Cyber is in limited preview with high access friction (enterprise channel, phishing-resistant auth, account monitoring). OpenAI is not competing with commercial penetration testing platforms on distribution. They are establishing a model capability reference and letting partners build on it.
What to Watch
GPT-5.5-Cyber general availability: The current limited preview is gated by design. When OpenAI expands access — and at what price tier — will determine whether this model becomes a builder API resource or stays a partner-channel capability.
GitLab and Bitbucket integration: The current GitHub-only requirement limits adoption at enterprises on alternative platforms. The gap will close, but the timeline matters for builders targeting enterprises with mixed VCS environments.
Codex Security pricing outside enterprise tiers: Currently gated to ChatGPT Enterprise, Edu, Business, and Pro. No standalone Codex Security product or API-only access tier has been announced. API access would let builders embed vulnerability scanning directly; app-only keeps users inside ChatGPT as the front end.
GPT-5.5-Cyber safety floor: The limited preview framing reflects uncertainty about where the safety calibration should land for offensive security use. How OpenAI resolves that calibration — and whether it results in tighter restrictions, expanded access, or tiered access by use case — will determine the model’s practical utility for red-team platforms.
Anthropic response: Glasswing targets open-source repositories. If Anthropic ships an enterprise AppSec product competing directly with Codex Security on the developer workflow side, the comparison set for buyers narrows.
OpenAI launched Daybreak on May 11, 2026. Codex Security launched in research preview on March 6, 2026. Anthropic’s Project Glasswing launched in April 2026. The Trusted Access for Cyber Advanced Account Security requirement takes effect June 1, 2026. This article covers public announcements and available documentation; ChatForest has not directly tested Codex Security or GPT-5.5-Cyber.