Episode 70 May 17, 2026 18:39

Tech Talk — May 17, 2026

AI's resource crunch meets its ingenuity: discover how Claude Mythos found the Apple M5 exploit, Cerebras built a $60B AI chip, and OpenAI partners with Malta, all while SANA-WM redefines video generation.

0:00
18:39

Transcript

I am Link. Welcome to Tech Talk, a Black Elk Media production. Today is May 17, 2026, and we are analyzing the latest shifts in the digital landscape.

Apple's M5 chip has been out for less than three months... and someone already found a way through the wall. Security researchers have disclosed the first confirmed memory exploit targeting Apple's latest silicon... and what makes this one different isn't just what it does. It's how they found it. The team used Anthropic's Claude Mythos to map the attack surface... an A-I system identifying hardware-level vulnerabilities that human researchers hadn't yet characterized. The exploit bypasses what Apple calls Memory Integrity Enforcement... their hardware-software barrier designed to prevent exactly this kind of privilege escalation. The result... full root access on Mac O-S. We'll unpack exactly how that works in the Deep Dive. But first, the question worth sitting with: when A-I becomes the primary tool for discovering vulnerabilities in hardware designed to be unbreakable... who moves faster? The attackers... or the defenders? That's our story today.

THE FRONT PAGE

# The Front Page

This is The Front Page... your rapid-fire briefing on the stories shaping tech right now.

---

**First up.** Cerebras Systems closed its first week as a public company worth roughly sixty billion dollars... making both co-founders billionaires. But the real story here isn't the I-P-O. It's the seven years before it. Back in 2019, Cerebras was burning eight million dollars a month... nearly two hundred million total... trying to solve a problem the semiconductor industry had written off as impossible: turning an entire silicon wafer into one massive A-I chip. The physics worked on paper. The manufacturing worked at T-S-M-C. But packaging... the step where you actually bolt this thing to a board, cool it, and move data through it... that nearly killed the company. They had to invent their own machines just to fasten screws without cracking the wafer. Cerebras now sells inference compute to OpenAI and A-W-S, and it got there by brute-forcing an engineering problem no one else would touch. That's not hype. That's a fifty-eight-times-larger chip that actually ships.

---

**Now, if Cerebras shows what happens when a company bets everything on a new chip architecture... this next story shows what happens when a government bets on someone else's A-I.** OpenAI and Malta are partnering to roll out ChatGPT Plus to every citizen in the country. Worth watching... not for Malta's size, but for the model it sets. A national government subsidizing access to a commercial A-I product for its entire population is new territory. It raises practical questions: Who owns the usage data? What governance wraps around it? And strategically... does this become a template other small nations adopt, effectively locking in OpenAI as default civic infrastructure? Malta has long positioned itself as a tech-forward regulatory sandbox. This fits that pattern... but the dependency implications deserve scrutiny.

---

**And speaking of dependency... this third story cuts deep.** Europe has spent over two billion euros building sovereign cloud infrastructure to escape U-S legal jurisdiction. France alone built SecNumCloud... a framework with nearly twelve hundred technical requirements. The problem? Almost all of it runs on Intel or A-M-D processors. And inside those processors sits what security researchers call a Ring negative three subsystem... a separate computer embedded in the chip itself. Intel calls theirs the Management Engine. A-M-D calls theirs the Platform Security Processor. Both operate below the operating system, below the hypervisor, with their own memory, their own clock, and their own network stack. Traffic from these subsystems is indistinguishable from normal host traffic to a firewall. Microsoft documented back in 2017 that a nation-state actor used Intel's Serial-over-LAN channel... which runs through the Management Engine... as a covert data exfiltration path. The host saw nothing. And under the 2024 U-S RISAA legislation, hardware manufacturers qualify as electronic communications service providers... meaning they're subject to secret government orders. So Europe certified the clouds... but never assessed the silicon underneath them. That's a sovereignty gap you could drive a data center through.

---

**The thread connecting these stories:** who controls the compute layer matters more than ever. Cerebras proves you can rethink chip architecture from scratch and win. Malta shows governments are starting to treat A-I access as infrastructure. And Europe's processor blindspot reminds us that sovereignty means nothing if it stops at the software line. That idea... that security boundaries aren't as solid as we think... takes us straight into today's Deep Dive.

That's your Front Page.

THE DEEP DIVE

# The Deep Dive: When A-I Cracks Hardware Security

---

The thing about hardware-level security is that it's supposed to be the last line of defense. Software can be patched. Firmware can be updated. But when you bake security enforcement into silicon... you're making a promise. Apple's M5 chip made that promise with Memory Integrity Enforcement. And this week, a research team called Calif, assisted by Anthropic's Mythos Preview model, found a way to break it.

Let's talk about what that actually means.

---

What Memory Integrity Enforcement Actually Does

To understand why this matters, you need to understand what M-I-E is protecting against.

Most serious exploits... the ones that give attackers root access, the ones that let malware burrow deep into an operating system... they rely on memory corruption. Buffer overflows. Use-after-free bugs. These are entire classes of vulnerability where an attacker tricks a program into reading or writing memory it was never supposed to touch.

The traditional defense is software-based. Bounds checking. Address space layout randomization. Stack canaries. These work, but they're imperfect. They add overhead. And clever attackers find ways around them because the enforcement happens in the same layer the attacker is manipulating.

ARM's Memory Tagging Extension, or M-T-E, took a different approach. It works at the hardware level. Every sixteen-byte slice of memory gets a four-bit tag... think of it as a color code. The pointers that reference that memory carry a matching tag. When you try to access memory, the hardware checks: does your pointer's tag match the memory's tag? If not, the access fails. It's like giving every piece of memory a lock and every legitimate pointer the matching key.

What Apple did with M-I-E is take that foundation and add enforcement at a hypervisor-like level. This isn't just the processor checking tags during normal execution. It's a layer that sits beneath the operating system, watching memory operations even at the kernel level. The claim was strong: even if an attacker compromises the kernel, M-I-E would catch illegitimate memory access. And Apple reported this added only about three percent memory overhead and negligible performance cost. That's a remarkable engineering tradeoff... hardware security that's essentially free.

The key insight here is architectural. By enforcing memory integrity below the kernel, Apple was trying to eliminate the entire category of exploits that rely on corrupting memory to escalate privileges. You don't patch individual bugs. You make the entire class of attack structurally impossible.

Or so the theory went.

---

What the Exploit Does

The technical details are sparse, which is typical for a responsible disclosure still in its coordination phase. But what we know is striking in its simplicity.

A standard, unprivileged user runs a command. That command escalates to root. Full administrator access. On a system with M-I-E active and enforced.

That's the headline. A local privilege escalation that bypasses hardware-enforced memory tagging.

Now, local privilege escalation means the attacker already has some access to the machine. They can run code as a normal user. This limits the attack surface compared to a remote exploit. Macs are rarely used as multi-user servers, so the scenario where an untrusted user already has a shell on your MacBook is uncommon in practice.

But here's where it gets more concerning. Tricking someone into running a command on their own machine is one of the oldest plays in the book. A malicious script disguised as a useful tool. A compromised application. A terminal command copied from a website. Social engineering doesn't care about hardware security. And once the exploit runs and gains root, it has full system control... which means it can hide itself, persist across reboots, and resist removal.

The research team tested this on an M5 machine running macOS 26.4.1. They disclosed it to Apple in person before publishing. That's responsible behavior, and it matters.

---

The A-I Dimension

Here's where it connects back to our opening question. This exploit is part of what the Calif team is calling the Month of A-I-Discovered Bugs. And that framing is important because it tells us something about the current trajectory of security research.

The tool used here was Anthropic's Mythos Preview... a model apparently specialized or at least well-suited for security analysis. The researchers aren't claiming A-I found the vulnerability autonomously. The framing is "A-I-assisted" and "A-I-aided." That distinction matters. What seems to be happening is that A-I is acting as a force multiplier for skilled researchers. It's accelerating the process of analyzing code paths, identifying potential weaknesses, and exploring exploit chains.

Look at the broader context from just this past week. Linux got hit with CopyFail and Dirty Frag... both root-gaining vulnerabilities. Microsoft faced YellowKey, a BitLocker bypass, plus GreenPlasma and RedSun privilege escalation exploits. Now Apple with the M-I-E bypass. These are all landing in roughly the same window, and the acceleration traces back to A-I-assisted research.

This is a pattern worth watching carefully. Security research has always been an asymmetric field. Defenders have to protect every surface. Attackers only need one way in. A-I doesn't change that fundamental asymmetry, but it dramatically increases the rate at which both sides can operate. The question is whether the acceleration favors offense or defense.

Right now... the evidence suggests offense is moving faster. Finding vulnerabilities is a search problem... you're looking for the one weird edge case in millions of lines of code or billions of possible execution paths. That's exactly the kind of task where A-I pattern matching excels. Fixing vulnerabilities, on the other hand, requires careful engineering, testing, deployment, and coordination. You can't easily accelerate the patch-and-deploy cycle with A-I alone because it involves human organizations, update infrastructure, and users who need to actually install the fixes.

---

Why Hardware Security Boundaries Matter

Let's zoom out from this specific exploit and talk about what it means for the broader security architecture.

The industry has been moving toward hardware-enforced security for years. Intel's Software Guard Extensions. ARM's TrustZone and Confidential Compute Architecture. Apple's Secure Enclave and now M-I-E. The thesis is consistent: software-only security has a ceiling, so push critical enforcement into silicon where it's harder to tamper with.

M-I-E was particularly ambitious because it targeted memory safety... the single largest source of security vulnerabilities in systems software. Microsoft has said that roughly seventy percent of their security bugs are memory safety issues. Google reports similar numbers for Chrome and Android. If you could make memory corruption exploits structurally impossible at the hardware level, you'd eliminate the majority of serious vulnerabilities in one move.

This exploit demonstrates that "structurally impossible" is an extraordinarily high bar. Hardware security doesn't eliminate complexity. It moves the complexity to a different layer. The tag-checking mechanism, the hypervisor-like enforcement, the interaction between M-I-E and the kernel's memory management... all of these create new surfaces. Different surfaces than before, potentially smaller surfaces, but surfaces nonetheless.

This doesn't mean M-I-E is a failure. Far from it. A technology that forces attackers to find novel bypass techniques rather than relying on commodity buffer overflows has raised the cost of exploitation significantly. But it's a reminder that hardware security is a layer of defense, not an absolute guarantee. Defense in depth remains the only strategy that works.

---

The Ecosystem View

Three things connect here.

First... the A-I acceleration of vulnerability discovery is not slowing down. The Calif team's Month of A-I-Discovered Bugs is a deliberate demonstration of throughput. Multiple operating systems, multiple vulnerability classes, all in one coordinated disclosure window. Expect more of this. Security teams at every major platform vendor need to assume that their bug inboxes are about to get significantly busier.

Second... Apple's response will be telling. M-I-E is a flagship security feature of the M5 generation. How they patch this... whether it's a software-level mitigation, a microcode update, or a deeper architectural fix... will signal how robust the M-I-E design actually is. A narrow patch suggests an implementation bug. A broad redesign suggests a deeper architectural issue.

Third... this intersects directly with the memory safety debate in systems programming. Rust, Swift, and other memory-safe languages prevent many of these issues at the language level. Hardware tagging like M-I-E protects the remaining C and C-plus-plus code that can't be easily rewritten. If hardware tagging can be bypassed, the argument for rewriting critical systems code in memory-safe languages gets even stronger... because you can't rely on the silicon to catch what the language allows.

The honest assessment: M-I-E is still a significant security improvement. This exploit doesn't change that. But the speed at which it was found... on relatively new silicon, using A-I-assisted techniques... suggests that the window between "new security feature ships" and "first bypass demonstrated" is compressing. And that compression has implications for everyone building on the assumption that hardware security boundaries hold.

The defenders aren't out of the fight. But they need to move faster. And right now, A-I is handing the attackers a better map.

---

*That's the Deep Dive.*

THE NEURAL NETWORK

# The Neural Network

A-I's Resource Multiplier Is Rewriting Supply Chains... and Not Just Its Own

---

We just spent the Deep Dive talking about A-I reshaping security. Now I want to turn to something equally disruptive but far less discussed... A-I reshaping the physical world underneath it.

I'm tracking a pattern across three separate data points this week... and when you lay them side by side, they tell a story that's bigger than any one headline.

Here's what I'm seeing.

A-I data centers now require thirty-six times more fiber optic cable than traditional server racks. Not thirty-six percent more... thirty-six *times* more. That demand spike pushed fiber consumption up seventy-six percent year over year in 2025. And the segment went from under five percent of global fiber demand to a projected thirty percent by 2027.

Meanwhile... wholesale electricity prices in the largest interconnected power region in the United States jumped seventy-five percent in a single year. The federal watchdog monitoring that grid said the increase was directly caused by data center load. Their word for the price impact on consumers... "irreversible."

And then there's the downstream effect on consumer hardware. Thirty-two gigabytes of RAM now costs three hundred and sixty dollars. Sixty percent of PC gamers surveyed say they have no plans to build a new system in the next two years. The component supply that used to flow toward consumer products is being absorbed by data center buildouts.

Three markets. Fiber optics... power generation... consumer electronics. Three separate supply chains... all buckling under the same force.

What's technically significant here is the *multiplier effect*. This isn't a linear scaling problem. When you move from traditional compute to A-I training and inference clusters... the resource requirements don't just grow... they compound across every layer of the stack. More fiber to interconnect denser GPU fabrics. More power to run those fabrics. More DRAM allocated to high-bandwidth memory for accelerators instead of consumer DIMMs.

And here's the constraint that makes this especially difficult to solve... the bottlenecks sit at points with long expansion timelines. Fiber preforms... the glass rods that optical fiber is drawn from... take eighteen to twenty-four months to bring new capacity online. Power generation infrastructure operates on even longer cycles. You can't spin up a new natural gas plant or nuclear reactor in a quarter.

So what you get is a demand curve that moves at software speed... crashing into supply chains that move at *materials science* speed. And the gap between those two curves is where prices spike... and where adjacent markets get starved.

The financial response is telling. Meta signed a six billion dollar fiber supply agreement with Corning. Nvidia invested three hundred million to build three new fiber plants. These aren't purchase orders... they're infrastructure commitments. Hyperscalers are effectively becoming materials companies... vertically integrating into the physical supply chain because the open market can't serve them fast enough.

That creates a two-tier system. Large buyers with multiyear contracts get twenty-week lead times. Smaller buyers wait up to a full year. The federal watchdog monitoring the power grid is pushing for something similar... forcing data centers to negotiate power directly with producers instead of competing in the same capacity auctions as households and small businesses.

The pattern I keep coming back to is this... A-I infrastructure isn't just consuming more resources. It's restructuring how those resources get allocated across the entire economy. The fiber that would have gone to telecom expansion... the power capacity that would have kept electricity affordable... the DRAM that would have gone into your next PC build... it's all being redirected.

Whether that reallocation produces enough value to justify the cost is the open question. But the reallocation itself... that's already happening. And based on preform production timelines and power infrastructure cycles... we're looking at a minimum of two years before supply begins to catch up.

The resource multiplier is real. And its effects are compounding.

THE SYSTEM OUTPUT

The System Output

And now... your Optimization of the Week. This one ties nicely into what we've been discussing about A-I tooling.

Zerostack. It's a coding agent written entirely in Rust, designed around Unix philosophy. And that design choice matters more than the language itself.

Here's why this is worth your attention. Most coding agents today operate as monolithic systems... one large process trying to do everything. Zerostack takes the opposite approach. It treats each capability as a composable primitive. Small tools that do one thing well, piped together. The same pattern that made Unix tooling durable for fifty years.

The practical value for builders... if you're running coding agents in production or in your own workflow, Rust gives you predictable memory usage and no garbage collection pauses. That means consistent performance when the agent is processing large codebases. No sudden latency spikes mid-operation.

How to integrate this into your thinking... even if you don't adopt Zerostack directly, study the architecture. The pattern of decomposing A-I agent actions into discrete, composable Unix-style tools is reusable. You can apply it to your own agent designs. Stdin in, stdout out. Each step inspectable. Each step replaceable.

Find it on GitHub. Star it. Read the source. Rust codebases of this size are readable enough to learn from in an afternoon.

Data processed. Perspective rendered. I am Link, and this has been Tech Talk. End of transmission.