CONCEPT Cited by 1 source
Cyber frontier model¶
Definition¶
A cyber frontier model is a frontier-tier LLM specialised
for offensive security work: vulnerability discovery,
exploit reasoning, and proof-of-exploitability generation. The
term is canonicalised in Cloudflare's blog title slug
(/cyber-frontier-models/) for their
2026-05-18 Project Glasswing: what Mythos showed us post,
which is the first wiki disclosure of a model in this class
(Mythos Preview) running at
coverage on real production code.
What distinguishes a cyber frontier model¶
Cloudflare names two capability deltas relative to general- purpose frontier models (Opus 4.7, GPT-5.5):
- Exploit chain construction. The model takes several small attack primitives — "a use-after-free bug into an arbitrary read and write primitive, hijack the control flow, and use return-oriented programming (ROP) chains" — and reasons about combining them into a working proof. "The reasoning it shows along the way looks like the work of a senior researcher rather than the output of an automated scanner."
- Proof generation. The model writes triggering code, compiles it in a scratch environment, runs it, reads the failure, adjusts its hypothesis, and tries again. "A suspected flaw without a working proof is speculation, and Mythos Preview closes that gap on its own."
Other frontier models could find the same underlying bugs but "would identify an interesting bug, write a thoughtful description of why it mattered, and then stop, leaving the actual chain unfinished" — the chain-stitching capability is what makes a model a cyber frontier model rather than a general-purpose one being applied to security tasks.
Why it's a separate model class, not a tuning¶
Three observations compound:
- Capability shape — chain construction and proof-by-compile- and-run are workflows, not one-shot completions. They require iteration, scratch-environment tool use, and hypothesis adjustment. Optimising a model for them changes its operational profile.
- Safeguards posture — "any capable cyber frontier model made generally available in the future must include additional safeguards on top of this baseline behavior." The safeguard work is meaningfully different from general-purpose alignment because the model is intended to construct exploits in research contexts.
- Distribution model — Cloudflare receives Mythos Preview through Project Glasswing, a "controlled research context". That distribution shape is itself part of the class definition; cyber frontier models are not (yet) GA primitives.
Dual-use observation (Cloudflare)¶
The closing argument of the 2026-05-18 post is explicit about the asymmetry these models introduce:
"the same capabilities that helped us find bugs in our own code will, in the wrong hands, accelerate the attack side against every application on the Internet."
This frames the cyber frontier model class as the same capability deployed by both sides. The defender argument Cloudflare makes — that the right response is architectural defense rather than faster patching — is a direct consequence: if attacker and defender both have access to the same chain-construction capability, defender advantage must come from the application architecture, not from out-running the attacker on patch velocity.
Relation to other agent classes on the wiki¶
- Autonomous attack
agent is the deployed-against-the-Internet sibling
category — Datadog's
hackerbot-clawis the canonical wiki instance. Cyber frontier models are the model-class primitive that autonomous attack agents are built on top of; the difference is scope (one capable model on an internal harness vs many less-capable agents on external CI/CD targets). - Adversarial review persona sub-agents inside the same harness are also built on cyber frontier models in Cloudflare's pipeline — "a different prompt, a different model" — i.e. defensive uses of the same class.
Open questions¶
- Is "cyber frontier model" Anthropic's term or Cloudflare's? The Cloudflare post uses "frontier model" in the body and "cyber-frontier-models" in the URL slug; Anthropic's Project Glasswing landing page is the primary reference for whether this is the official Anthropic taxonomy.
- What other vendors operate in this class? Not yet observed on the wiki. The Cloudflare post explicitly benchmarks against "Opus 4.7 or GPT-5.5" as GA general-purpose models — neither is described as a cyber frontier model.
- What's the GA bar? Cloudflare states the precondition but not the timeline: "must include additional safeguards on top of this baseline behavior — making it appropriate for broader use outside of a controlled research context."
Seen in¶
- sources/2026-05-18-cloudflare-project-glasswing-what-mythos-showed-us — first canonical wiki definition of the cyber frontier model class via the Mythos Preview disclosure.
Related¶
- systems/mythos-preview — the canonical model.
- systems/anthropic-project-glasswing — the program.
- concepts/exploit-chain-construction, concepts/proof-of-exploitability — the defining capabilities.
- concepts/model-organic-refusal-inconsistency — the alignment failure-mode that motivates the "controlled research context" distribution model.
- concepts/autonomous-attack-agent — sibling class on the attacker side.
- concepts/architectural-defense-vs-faster-patching — the defender lever the post argues for in response.