
TL;DR
Anthropic's Claude Mythos Preview found novel attacks on the HAWK post-quantum signature scheme and reduced-round AES. The HN community debates the real significance, the $100K price tag, and what it means for prompt engineering.
Anthropic published a research post today showing that Claude Mythos Preview can discover mathematical weaknesses in cryptographic algorithms themselves -- not just bugs in their implementation. The results landed on the Hacker News front page with 126 points and 68 comments. Here is what the paper actually says, what HN thinks of it, and why it matters for developers building on top of both AI and cryptography.
The research describes two primary results.
HAWK key-recovery attack. HAWK is a post-quantum digital signature scheme, a third-round candidate in NIST's call for additional post-quantum signatures. It has survived two rounds of expert human review over two years. Mythos Preview found a nontrivial automorphism in the lattice HAWK uses -- a symmetry that prior work had proven would permit an attack, but that no one had found was actually present. The resulting attack cuts HAWK's effective key strength in half. A single Anthropic researcher with a theoretical computer science background (not a lattice-cryptography expert) worked with Mythos over 60 hours, costing roughly $100,000 in API tokens. The attack is not polynomial-time, so it does not break HAWK outright, but it means HAWK would need double the key size to reach its claimed security level, undermining many of the scheme's advantages.
AES meet-in-the-middle improvement. On a reduced 7-round variant of AES-128 (the full cipher uses 10 rounds), Mythos discovered a technique it called a "Mobius Bridge" that improves the best known meet-in-the-middle attack by 200-800x. This attack works under a chosen-plaintext threat model and is entirely impractical against real systems -- it does not break full AES. But the discovery process was remarkable: Mythos worked almost entirely autonomously over three days, producing roughly one billion output tokens, with only three substantive human prompts. The prompts themselves were refreshingly unpolished -- things like "no again the goal is that we have highly inteligent model as good top researcher, we want to find new attacks." After Mythos produced the core insight, two human researchers spent several hundred hours validating the result.
Anthropic also announced CryptanalysisBench, a benchmark built with ETH Zurich, Tel Aviv University, and University of Haifa that packages cryptographic ciphers for evaluating LLM cryptanalytic capabilities. And they previewed additional results on LEA (a practical attack on 13 of 24 rounds running under an hour on a desktop), Serpent-128, and smaller improvements on Salsa20, Poseidon, and SHA-1.
Anthropic was clear that none of these results have practical impact on production systems today. But they warned that as model capabilities grow, we should prepare for a future where LLMs find real-world cryptographic vulnerabilities faster than humans can validate them.
The HN discussion at news.ycombinator.com/item?id=49087091 surfaced several sharp takes.
The results are real but contextualized. Top commenter Retr0id provided the clearest TL;DR: "They marginally improved on the best known academic attack on 7-round AES-128 (which normally uses 10 rounds - you do not need to worry about AES being broken). The attack on HAWK is perhaps more interesting - they were able to halve the effective key length. HAWK is a candidate for NIST standardisation. It has been studied academically, but isn't really deployed anywhere."
adrian_b added an important nuance about the AES attack: "While using the strongest attack for testing a cipher remains the correct method, chosen-plaintext attacks are no longer realistic today." Modern modes like AES-GCM use counter mode where attackers cannot influence what gets encrypted.
The multi-agent dynamics got attention. a-dub flagged the interesting detail about two worker agents working in parallel: one prematurely rejected the key idea, the other found a way to exploit it, and they eventually converged. a-dub questioned whether this was genuine collaboration or just stochastic search: "it would be interesting to replay and repeat the search to get a sense for how often it finds or misses the known working path."
The $100K cost sparked a class divide debate. mmaunder ran the numbers: "$100k in tokens in a week is an impressive feat even with massive parallelization. I suspect the TPS their internal folks have access to is far higher than their bulk public endpoints. There's a tech aristocracy rapidly emerging in our society and it's going to tear us apart." jrflo countered that a single heavy day of API usage could hit $10K, making $70K/week plausible. Several commenters speculated whether Chinese models could reproduce these results at lower cost, with ecshafer asking pointedly "If a Chinese model can do it for $1-10K, then why hasn't one?"
The messy prompts became a meta-discussion about prompt engineering. dwt highlighted the typos and grammatical errors in Anthropic's own prompts and asked: "All of that RLHF and fine-tuning effort is going toward making prompts like this, or worse, work with no fuss." The thread then turned into a broader discussion of whether complex prompt engineering and skills files are overrated. impulser argued: "Give a LLM a bash tool and a prompt and it will outperform your complex setup with skills and tools." qingcharles noted the irony: "It's counter to what sci-fi taught us using AI would be like. We never thought we'd have to feed it words of encouragement."
Skepticism about the framing. Diogenesian pushed back on Anthropic's PR framing: "Discovering a weakness that had previously been only theoretical is vastly different from discovering an unknown weakness." The work was impressive, they argued, but the article's first paragraph implied HAWK had no known weaknesses, when in fact prior work had already theorized the attack vector.
The chilling effect on human researchers. staticshock raised a longer-term concern: "A thing I worry about is that as AI transmutes tokens into effort, it'll split the world into two: some problems will yield, making human effort entirely unnecessary, and others will harden to the point where human effort will feel increasingly less worthwhile, because 'even AI couldn't solve it'."
And the obligatory HN snark: Johnny_Bonk posted simply "Great now can you make opus 5 work please."
Newsletter
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools, delivered free every week.
From the archive
Jul 28, 2026 • 9 min read
Jul 27, 2026 • 8 min read
Jul 27, 2026 • 8 min read
Jul 27, 2026 • 8 min read
Three things stand out from this release.
First, the human validation bottleneck is real and already here. Mythos produced the AES attack in three days. Two researchers spent "several hundred hours" validating it. Anthropic says they are "reaching the limits of our own knowledge" on verifying Claude's cryptographic results. This mirrors the finding from Project Glasswing, where Claude found over 10,000 critical vulnerabilities that humans could not triage fast enough -- a problem we covered in AI Security Triage Bottleneck. As AI-generated research output accelerates, the bottleneck shifts from generating results to validating them. We may need AI-assisted verification pipelines before we have them.
Second, the prompt engineering lesson is worth internalizing. Anthropic's internal researchers did not use elaborate skill files or hundred-line system prompts. They sent short, frustrated, typo-ridden messages. The model understood intent through context and persistence, not through prompt precision. This aligns with a theme we have seen across the industry: agentic scaffolds and iterative loops matter more than clever prompting. Our own analysis of Claude Context Engineering Rules makes a similar point about steering over scripting.
Third, the HAWK finding changes the NIST timeline. HAWK was a promising candidate for post-quantum signatures because of its small key sizes. If those keys now need to double, the scheme loses its main advantage. The timing matters: organizations like Google and Cloudflare have announced 2029 deadlines for dropping pre-quantum algorithms. Every candidate that falls out of contention narrows the options. But this is exactly how the NIST process is supposed to work -- as commenter Retr0id noted, the purpose of standardization is to find weaknesses before deployment.
For developers, the practical takeaway is straightforward today: full AES and RSA are not broken. HAWK is not deployed. But the pace of AI-discovered cryptanalysis is accelerating. In just one year, LLMs went from being unable to crack basic ciphers to improving on expert-human results. If you are designing systems with multi-year security lifetimes, it is worth monitoring how fast this capability grows. And if you are building AI agents that interact with security-sensitive systems, the Agent Security Checklist and Claude Fable 5 Safeguards Architecture are good starting points for understanding the current threat model.
Read next
Anthropic released Opus 5 on July 24, 2026 - same price as Opus 4.8, within 0.5% of Fable 5 on CursorBench, and the new #1 on Artificial Analysis. We break down the benchmarks, HN reaction, and what it means for every developer choosing a daily-driver model.
12 min readAnthropic cut 80% of Claude Code's system prompt for Opus 5 and Fable 5 with zero regression on coding evals. The post landed on HN with 197 points and 133 comments. Here is what the article says, what HN thinks, and what it means for your agent harness.
7 min readTerence Tao published a deep mathematical digestion of the Jacobian conjecture counterexample discovered by Claude Fable 5. Here is what happened, what HN is saying, and what it means for AI-assisted research.
9 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Anthropic's first generally available Mythos-class model, released June 9, 2026. 1M context, 128K max output, $10/$50 pe...
View ToolAnthropic's agentic coding CLI. Runs in your terminal, edits files autonomously, spawns sub-agents, and maintains memory...
View ToolAnthropic's Python SDK for building production agent systems. Tool use, guardrails, agent handoffs, and orchestration. R...
View ToolAnthropic's AI. Opus 4.6 for hard problems, Sonnet 4.6 for speed, Haiku 4.5 for cost. 200K context window. Best coding m...
View ToolEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppUnlock pro skills and share private collections with your team.
View AppInteractive timeline showing what's in context at each turn.
Claude CodeManaged scheduling on Anthropic infrastructure with API and GitHub triggers.
Claude CodeThe primary command-line entry point for Claude Code sessions.
Claude Code
Anthropic Suspends Fable 5 & Mythos 5 After US Export Control Directive (Jailbreak Concerns) Anthropic announced that the US government issued export control directives requiring it to suspend Fable ...

Anthropic’s Claude Mythos Preview & Project Glass Wing: Breakthrough Performance, Massive Security Risks, and Frontier Pricing The script reviews Anthropic CEO Dario Amodei’s earlier “Machines of Lov

In this video, we dive into Anthropic's newly launched Cowork, a user-friendly extension of Claude Code designed to streamline work for both developers and non-developers. This discussion includes an

Anthropic released Opus 5 on July 24, 2026 - same price as Opus 4.8, within 0.5% of Fable 5 on CursorBench, and the new...

Anthropic launched the Claude Cookbook - 80+ practical guides from their engineers covering tool use, agent patterns, ev...

Terence Tao published a deep mathematical digestion of the Jacobian conjecture counterexample discovered by Claude Fable...

Anthropic releases Claude Sonnet 5 with improved agentic capabilities, better tool use, and an introductory pricing deal...

Dario Amodei published Anthropic's stance on open-weights models this week - no total ban, but support for chip export c...

Running Opus 5 through SlopCodeBench's multi-checkpoint gauntlet reveals that frontier models still degrade codebases ov...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.