惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
M
MIT News - Artificial intelligence
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
L
LangChain Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
B
Blog
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Latest from TechRadar in Security

Robots are fighting wars and helping to quash riots — China is arming riot police with squads of AI controlled drones and Ukraine wants to man the frontlines with 25,000 robots US security agency still using Mythos despite ban – government using new security tool despite Pentagon's… Struggling to launch Teams? Microsoft recalls update causing failed startup and infinite loading loops –… How to meaningfully measure the effectiveness of cyber resilience 'We've identified a security incident': Vercel breach confirmed after hackers claim stolen data for sale… How EU organizations can turn sovereign cloud theory into action 'Update immediately': 60,000 WordPress websites at risk after experts discover flaw that allows hackers to… 'They mopped the floor with me and pulled every childish game they could': Disgruntled researcher releases second major Windows zero-day — claims Microsoft 'would ruin my life, and they did' 'As threats evolve, Gemini keeps our defenses one step ahead': Google claims its AI helped it block over 8.3… Cisco tells Webex users to patch critical security flaws immediately, as experts find its Wi-Fi boxes may be filling their disks with undeletable data every day Microsoft experts warn North Korean attackers target macOS users with 'a highly reliable infection chain' to steal passwords, financial data and more — here's how to stay safe Solving the shadow IT crisis in travel Agentic swarms will change how everyone uses AI – but how can organizations deploy them securely? Europol launches Operation PowerOFF — warns 75,000 DDoS users and takes down 53 domains China completes testing on ‘deep-sea electro-hydrostatic actuator’ capable of slicing undersea cables as deep as 3.5 kilometers – new compact subsea vessel testing bridges the ‘last mile’ and could deploy in 2026 Many are still leaving the door open': Security experts warn FIFA World Cup partners could be putting customers at… 'Anyone with $10 could have walked straight through': Report warns this legit-looking software is actually… An ancient Microsoft Excel security flaw could let hackers hijack your entire system, so patch now 'This is not a traditional coding error': Experts flag potentially critical security issues at the heart of Anthropic's MCP, exposes 150 million downloads and thousands of servers to complete takeover Your OpenClaw agents can empty your inbox and leak your data. Here's how to secure them Russia hits European thermal power plant in attempted ‘destructive’ cyberattack – Pro-Kremlin hackers are engaging in ‘riskier and more reckless behavior’ in latest attempt to cripple Western critical infrastructure The war in Iran is reaching cyberspace - here’s how to prepare Millions of hotel goers may have been exposed after hackers steal data and leak it on Telegram 'Every Apple user needs to know about this nasty scam': Fake warnings tell users their iCloud data will be… Dozens of WordPress plugins hijacked to target thousands of sites 'We are currently being extorted' — crypto giant Kraken says it is facing extortion attack, here's… McGraw Hill becomes latest to see its Salesforce data hacked Over 100 Chrome Web Store extensions found stealing user data from thousands of accounts OpenAI reveals its Mythos rival designed for cybersecurity pros When cyberattacks are inevitable, recovery becomes the strategy
AI is having its "Ford T" moment as Zero Day assembly lin...
Justin Tibbs · 2026-05-15 · via Latest from TechRadar in Security

Coming out of the major security conferences this year, the anxiety around AI was palpable. However, if you listen closely, much of the industry is still stuck viewing AI as a sophisticated phishing generator or a helpful coding assistant.

Having spent my background in vulnerability research and exploit development manually hunting for memory corruption and writing exploits, looking at models like Anthropic's Claude Mythos, and now OpenAI's GPT-5.4-Cyber, hits entirely differently.

VP of the Cybersecurity Practice at Presidio.

Mythos isn’t just an assistant. It is industrializing vulnerability discovery and exploit development at a scale we have never seen. To understand why this is a fundamentally terrifying shift in the threat landscape, you have to understand how exploits used to be built and how AI is completely rewriting those rules.

The art of the exploit: A hostage negotiation with the CPU

Historically, finding a vulnerability, crash, or logic flaw was only about 10% of the battle. Turning that crash into reliable code execution is an artisanal, intensely manual process. Modern systems are hostile environments, layered with mitigations like ASLR (Address Space Layout Randomization) and DEP (Data Execution Prevention).

To bypass these, exploit developers rely on incredibly complex, fragile techniques:

  • ROP (Return-Oriented Programming) Chaining: When you can’t inject your own code, you have to hijack the execution flow and stitch together tiny, existing fragments of executable memory (called "gadgets") to do your bidding. It requires an intimate understanding of the target architecture and immense trial and error just to get a foothold.
  • JIT Heap Sprays: Exploiting a modern browser means manipulating its Just-In-Time compiler. You have to groom the memory layout perfectly, trick the engine into allocating your payload exactly where you want it, and desperately hope the garbage collector doesn’t trigger and crash the entire process before your exploit fires.

This work requires intuition, deep architectural familiarity, and a massive cognitive load. Humans get fatigued. We lose track of the state machine. We miss edge cases. Building a reliable exploit chain has always been a bottlenecked process, reserved for highly specialized researchers or well-funded nation-state teams.

The Mythos paradigm: abstracting art into compute

For years, we tried to automate this with fuzzers throwing millions of malformed inputs at a binary hoping it would crash. But fuzzers are blind; they fail entirely at navigating subtle, multi-step logic bugs.

Sign up to the TechRadar Pro newsletter to get all the top news, opinion, features and guidance your business needs to succeed!

Mythos succeeds where fuzzers fail because it isn't guessing; it is reasoning.

When Mythos approaches a complex problem like a JIT spray, it holds the entire execution flow in its context window. It doesn't rely on a "gut feeling." It reads the code, generates a hypothesis, writes the exploit, executes it in an isolated sandbox, analyzes the crash dump, and iterates.

It does this relentlessly, at compute speed, adjusting memory layouts programmatically until it hits the exact deterministic sweet spot.

Even more alarming is its ability to chain vulnerabilities. For a human, chaining a memory leak to a buffer overflow to a privilege escalation is exceptionally difficult because the environment state changes after every step.

Mythos natively handles this state-space explosion, seamlessly recalculating the environment and moving forward. It turns a fragile, human puzzle into a parallelized compute problem.

Exposing civilizational software debt

For the last decade, the fundamental mantra of cybersecurity has been “back to basics.” We were told that if we just practiced good security hygiene, patching high and medium CVEs, reducing our known vulnerability count to zero, we could keep the blast radius contained.

But this hygiene playbook assumes that the list of vulnerabilities is bounded and knowable. Glasswing obliterates that assumption.

The zero-day vulnerabilities Mythos has identified aren’t trivial edge cases; they include critical, difficult-to-detect flaws in every major operating system and web browser. This isn't a vulnerability backlog problem. This is a civilizational software debt problem being exposed overnight.

Telling CISOs to simply "patch faster" right now is essentially telling them to empty a flooding basement with a bucket, right after the burst pipe's diameter increased by orders of magnitude.

The nightmare scenario: democratizing the zero-day

The existential dread setting in across the vulnerability research community is justified. What happens if a model with these capabilities is open-sourced or leaked?

The barrier to entry for devastating, multi-stage attacks would hit the floor. An attacker wouldn't need to spend months reverse-engineering a proprietary SaaS platform or a legacy enterprise system; they would simply point the model at it.

We would enter the era of the "Zero-Day Factory," where novel attack methods are generated continuously. The time-to-exploit window—the time defenders have between a vulnerability being introduced and it being weaponized—would collapse to near-zero.

This asymmetric reality is exactly why Anthropic locked Mythos behind Project Glasswing. By restricting it to defensive launch partners, it appears the goal is to give the good guys a head start.

For those of us tasked with designing architectures, communicating risk to clients, or defending IT infrastructure, the threat model has permanently shifted.

With Anthropic's Claude Mythos and now OpenAI's GPT-5.4-Cyber, we are officially at a tipping point in model sophistication where these innovations will cause real problems for the cybersecurity industry.

We can no longer rely on the assumption that complex exploit chains are too expensive or difficult for the average threat actor or perhaps even script kiddie to build.

The artisanal era of exploitation is ending, and the industrialized era has already begun.

We've featured the best endpoint protection software.

This article was produced as part of TechRadar Pro Perspectives, our channel to feature the best and brightest minds in the technology industry today.

The views expressed here are those of the author and are not necessarily those of TechRadarPro or Future plc. If you are interested in contributing find out more here: https://www.techradar.com/pro/perspectives-how-to-submit

VP of the Cybersecurity Practice at Presidio.