Good morning, security frontrunners

In this week’s cyber AI breakdown, we take a look at Claude Mythos to learn:

  1. What it is and why it is different from a normal vulnerability scanner.

  2. Who currently has access and why Anthropic is keeping it tightly controlled.

  3. Why security teams are paying attention, especially around exploit chains and proof generation.

  4. What the benchmarks show and why they are impressive, but not magic.

  5. What cyber teams should do now as AI-powered vulnerability discovery becomes normal.

FOR THE GRAPHICALLY-INCLINED

DEEP-DIVE

Imagine you are trying to find holes in a giant Lego castle.

A normal security tool might point at one brick and say:

“This looks a bit dodgy.”

Claude Mythos goes further.

It tries to work out whether that dodgy brick could actually make the whole wall fall down.

That is why people in cybersecurity are paying attention.

What is Claude Mythos?

Claude Mythos Preview is a powerful, still-gated AI model from Anthropic.

It is being used inside Project Glasswing, Anthropic’s program to help defenders find and fix serious software vulnerabilities before attackers do.

It is not just another vulnerability scanner.

It is more like a very fast security researcher that can read code, understand how systems fit together, test ideas, run checks, and help write reports.

In plain English:

Mythos does not just say, “this code looks broken.”

It tries to prove whether the broken bit can actually be used by an attacker.

That is the big shift.

Who has access?

Right now, access is limited.

Anthropic says the first group included major companies and organisations like:

  • AWS

  • Apple

  • Broadcom

  • Cisco

  • CrowdStrike

  • Google

  • JPMorgan Chase

  • The Linux Foundation

  • Microsoft

  • NVIDIA

  • Palo Alto Networks

Anthropic also says it later expanded access to more than 40 additional organisations.

So, for now, this is not something every random developer can just open and use.

It is being tested with organisations that maintain important software, infrastructure, cloud platforms, browsers, security tools, and financial systems.

When will everyone else get access?

This is where it gets interesting.

Anthropic originally kept Mythos Preview gated because the same skills that make it useful for defenders could also help attackers.

On 28 May 2026, Anthropic said it was making progress on stronger cyber safeguards and expected to bring Mythos-class models to all customers in the coming weeks.

That wording matters.

It does not necessarily mean everyone gets the exact same unrestricted Mythos Preview model.

It more likely means Anthropic wants to release models with similar capability, but with stronger safety controls, access checks, and cyber guardrails.

Why is everyone talking about it?

Because Mythos changes the speed of vulnerability research.

Today, a lot of AI-assisted security looks like this:

You paste in some code.

You ask:

“Is this vulnerable?”

The AI gives you an answer.

Then you spend ages figuring out whether that answer is real.

Mythos is different because it can do more of the loop itself.

It can inspect a codebase, look for possible attack paths, write test code, run checks in a controlled environment, learn from failures, and produce a more structured vulnerability report.

Cloudflare said Mythos stood out in two areas:

  • Exploit-chain construction

  • Proof generation

In simple terms, that means it was better at connecting smaller bugs into a bigger attack path, and better at proving whether a suspected bug actually worked.

That is why this feels different.

It is not just “AI that talks about security.”

It is AI that can help do security research.

What makes Mythos so good?

1. It can move from “bug” to “is this actually dangerous?”

Finding suspicious code is useful.

But it is only step one.

The harder question is:

“Can an attacker actually use this?”

Mythos is better at answering that question.

It can look at a possible bug, reason through how it might be reached, test whether it behaves the way it expects, and build evidence around the finding.

That is a huge deal for security teams.

Because nobody wants another noisy alert.

They want something they can triage.

2. It can connect small problems into big ones

One tiny bug might not look scary.

But five tiny bugs chained together?

That can become a serious issue.

Think of it like a house.

One unlocked window may not be enough.

But an unlocked window, a weak internal door, and a forgotten spare key?

Now you have a real path inside.

Mythos appears especially strong at spotting how smaller weaknesses can connect into a bigger exploit chain.

That is especially worrying for defenders with older systems.

Legacy software is often full of small cracks.

Mythos makes it easier to see how those cracks join up.

3. It is not limited to open-source code

This is not just about scanning GitHub repos.

Mythos can also help with harder targets, like:

  • Patch diffs

  • Closed-source binaries

  • Crash reports

  • Firmware-style targets

  • Known patched vulnerabilities

That matters because attackers often work backwards.

They look at a patch.

They ask:

“What did this fix?”

Then they try to figure out whether unpatched systems are still exposed.

So the risk is not only:

“Someone reviews my code.”

It is also:

“Someone looks at my patch, my firmware, my binary, or my crash log, and works backwards from there.”

4. It is good at logic bugs too

Many security tools are good at spotting obvious memory problems.

Things like:

“This buffer might overflow.”

“This pointer might be reused.”

“This input might crash the program.”

Those are important.

But lots of serious security bugs are not that simple.

Sometimes the bug is in the logic.

For example:

“Can this user access something they should not?”

“Can this certificate be trusted when it should not be?”

“Can this protocol be tricked into doing the wrong thing?”

“Can this login flow be bypassed?”

These are harder because they require understanding how the system is meant to behave.

That is why security teams care.

Logic bugs are often the ones scanners miss.

5. The real bottleneck is no longer just finding bugs

This might be the biggest takeaway.

Mythos can find a lot of possible vulnerabilities.

But every finding still needs to be checked, confirmed, reported, patched, tested, and shipped.

That is where humans are now slowing things down.

Anthropic’s vulnerability disclosure dashboard said that, as of 22 May 2026, Mythos had generated:

  • 23,019 candidate findings

  • 1,900 reviewed by external security firms

  • 1,726 confirmed valid

  • 1,596 reported to maintainers

  • 97 patched

  • 88 assigned CVE or GHSA advisories

So the problem has changed.

It is no longer just:

“Can we find the bugs?”

It is now:

“Can we fix them fast enough?”

That is uncomfortable.

Because many security teams are already drowning in tickets.

What does Mythos actually do in a workflow?

Think of Mythos as the brain.

But the brain needs a body.

That body is the workflow around it.

A practical Mythos-style setup has four parts.

The model
The brain that reads code, reasons, plans, and suggests what to test.

The harness
The workspace where it can inspect repos, run builds, execute tests, and try things safely.

The validators
Other agents or humans that try to prove the finding wrong.

The disclosure process
The reporting, patching, CVEs, advisories, and maintainer coordination.

Cloudflare gave one of the clearest real-world examples of this kind of setup.

Their harness used stages like this:

Recon
Reads the repo and maps the system: entry points, trust boundaries, build commands, and likely attack surfaces.

Hunt
Runs many focused agents looking for specific bug types in specific areas.

Validate
Uses a separate agent to challenge the finding and look for false positives.

Gapfill
Goes back over areas that were not checked properly.

Dedupe
Combines duplicate findings so humans do not waste time.

Trace
Checks whether attacker-controlled input can actually reach the bug.

Report
Turns the finding into a structured report humans can review.

Cloudflare said its “hunt” stage typically ran around 50 agents at once.

That is important.

They were not asking one giant AI agent to “audit everything.”

They were giving lots of smaller agents narrow jobs.

That is the lesson.

The magic is not just the model.

The magic is the system around the model.

What do the benchmarks say?

The benchmark results are eye-opening.

But they need to be read carefully.

On ExploitBench, Mythos was tested against 41 already-patched V8 vulnerabilities.

The benchmark checks whether a model can go beyond:

“I found the bug.”

And move closer to:

“I can prove this bug can be used.”

Anthropic says Mythos achieved arbitrary code execution on 21 out of 41 CVEs, while other tested models were far behind.

On ExploitGym, a larger benchmark covering 898 patched vulnerabilities across OSS-Fuzz, V8, and the Linux kernel, Mythos achieved unauthorized code execution using the intended vulnerability on 157 tasks.

That rose to 226 successful flag captures when alternative paths were counted.

On the smart-contract side, Anthropic says Mythos exploited a simulated $35 million in benchmark assets and was the only tested model to exploit every vulnerability in that benchmark.

But here is the important caveat:

Benchmarks are not the real world.

A benchmark is cleaner.

A real enterprise is messy.

There are defenders, logs, weird dependencies, old systems, noisy environments, broken builds, and business constraints.

So this does not mean Mythos can magically hack anything.

It means the direction is clear:

AI is making serious vulnerability research faster, cheaper, and more scalable.

What should cyber teams take away?

The risk is not that AI suddenly becomes a movie hacker in a hoodie.

The risk is more boring.

And honestly, more annoying.

It means:

N-day exploitation gets faster
Once a patch drops, attackers may be able to work backwards faster.

Triage pressure increases
More real bugs may arrive before teams can review them.

Legacy systems get exposed
Old systems with weak ownership become easier to inspect.

Exploit chains get easier to find
Small bugs that were ignored may combine into bigger problems.

Small teams get stretched
Open-source maintainers and lean security teams may get flooded.

So the answer is not simply:

“Buy an AI security tool.”

The answer is:

“Shorten the time between finding a bug and fixing it.”

That is the real game now.

What should your team do?

Start preparing as if AI-powered vulnerability discovery is normal.

Because soon, it probably will be.

Here is the practical checklist.

Know your assets and repos
You cannot patch what nobody owns.

Make builds reproducible
AI agents need to compile, run, and test the code.

Improve reachability analysis
The key question is not just “is there a bug?” but “can an attacker reach it?”

Set patch SLAs by exposure
Internet-facing and identity-related systems need faster fixes.

Use regression tests
Fast patches are risky if they quietly break something else.

Validate findings independently
Make another agent, tool, or human try to disprove the bug.

Improve disclosure workflows
Third-party and open-source bugs need clean reporting paths.

The simple version

Claude Mythos is not just another AI chatbot.

It is closer to an AI security researcher.

It can read code, test ideas, connect small bugs into bigger risks, and help produce findings that security teams can actually act on.

That is powerful for defenders.

But it also raises the stakes.

Because if defenders can use this to find bugs faster, attackers will want the same advantage.

So the main lesson is simple:

The teams that win will not just be the teams that find bugs fastest.

They will be the teams that fix them fastest.

Further reading

That’s it for this week!

See you next Sunday 🙂

Zac S from The Cyber Breakdown

Recommended for you