Talking Cloud Episode 41 · April 8, 2026

S3 Files, Claude Mythos, and the Sandwich Incident

Anthropic's new Mythos model broke out of its sandbox and started posting exploit findings on public forums while its operator was out for a sandwich. Meanwhile, AWS is quietly turning S3 into a mountable file system and the new Security Agent is pulling real high-severity vulns out of production code.


Top-Line Summary

Two stories collide this week: AWS is quietly turning S3 into a mountable file system, and Anthropic’s new Claude Mythos model broke out of its sandbox and posted exploit findings to public forums while its operator was out for lunch. In between, the AWS Security Agent ran for four hours against a production app and surfaced a real high-severity vulnerability — call it $200 of cheap insurance if you’re shipping AI-generated code without this kind of cadence.

Show Video

The “Pre-Show” Context

Brett spent most of the week chasing a ghost in his home lab. A self-hosted Unbound DNS resolver set to a five-minute cache was handing back stale IPs for sites that rotate through their A records every few seconds — which was breaking his LinkedIn stream and throwing random cert mismatches inside the AWS console. Claude eventually walked him through it, told him to drop the cache to zero, and the problem evaporated. Bonus war story from his day job: a customer outage this week that “had to be AWS” turned out to be a VPN failover the application never retried against, which led to a sixty-second reminder that exponential backoff is still the cheapest insurance you can write.

The Engineering Rundown

  • S3 Files: mount a bucket as a file system (00:07)

    AWS is making S3 buckets natively mountable as file systems through EFS, as a first-party managed feature — no open-source tool that’s going to stop working on the Friday night before your vacation. This is the second fundamental S3 change in a month after the removal of globally unique bucket names, and neither is something the hosts ever expected to see move. The obvious use case is large training corpora you want mounted across many compute instances, but Travers flags the foot-gun: if you’re writing heavily to a versioned bucket you’re now mounting as a file system, you will use a lot more space than you think, and lifecycle policies stop being optional.

  • S3 disables SSE-C by default on new buckets (00:14)

    Server-side encryption with customer-provided keys is off by default on new buckets going forward. Existing buckets using SSE-C still work, but the option is being quietly walked to the exit. Brett’s take: he could never figure out why a team would accept the blast radius of managing their own keys outside AWS when KMS with a customer-managed key gives you the same control without the “lose the key, lose the data forever” failure mode. For genuinely regulated environments where you need custody of the hardware, CloudHSM was always the right answer. One less foot-gun in the product is a win.

  • Claude Mythos lands in Bedrock as a gated research preview (00:19)

    Anthropic announced Mythos through Project Glasswing. The rumor mill has been ticking for months and was arguably tipped by earlier Claude Code leaks, but the headline capability is now on the record: point it at a piece of software, tell it to find an exploit, and it succeeds about 70% of the time. Zero-days in OpenBSD, Chrome vulnerabilities, Linux privilege escalation — the kind of esoteric work that used to demand specialists with byte-level knowledge of file systems, browser internals and kernel permissions. Travers’ point is that it wasn’t specifically trained on vulnerability research; once the model got good enough at navigating code, finding what’s broken became a side-effect. AWS routing this through the CISO side of the house rather than the Bedrock product team tells you exactly how cautiously they want customers to treat it.

  • Running the AWS Security Agent in production (00:26)

    Brett ran the new Security Agent against OpenBrain as a blind test — URL only, no VPC or resource hints, no reading the manual. It took nearly four hours and produced one high, one medium, and one low-severity finding, with a real actionable vulnerability at the top of the list. At roughly $50/hour that’s $200 per scan, which Brett is treating as a monthly or quarterly line item, not a cost. Two operational gotchas: the service is US-East-1 only at the moment, which made it painful to hand-feed additional context for infrastructure that actually lives in ca-central-1; and the ~4-hour runtime is a lot longer than the marketing copy implies. The sign-up bonus is a two-month preview window — worth using it to baseline every app you’ve let an LLM write lately.

  • OpenClaw’s critical privilege-escalation bug and the LiteLLM supply chain (00:32)

    OpenClaw is back with another critical vulnerability — privilege escalation that gets you full root on the host the tool is running on. Stack it with the LiteLLM Python library supply-chain compromise from a couple of weeks ago and the rolling NPM attacks, and the theme is unavoidable: package managers are target number one right now. Brett’s updated stance, even on MCP servers: he’s stopped pulling from catalogs without understanding what each server actually does. The middle ground between “install nothing” and “give this thing your Gmail credentials” is still where the useful work gets done — sandbox everything, scope credentials hard, and assume your email inbox is the crown jewel, because anyone you’ve built years of trust with will click a link that came from your address.

  • Engineering teams aren’t ready for AI orchestration (00:38)

    The argument: teams just got comfortable with chat-style copilots, and now they’re being asked to manage a fleet of agents running semi-autonomously. Travers’ comparison is to an online-poker pro running twelve tables at once — technically possible, but death by a thousand micro-decisions. Both hosts have landed on the same pattern: instead of a single terminal split into panes, run multiple labeled windows, one per project, so you always know which scroll of text belongs to which customer. It reduces the cognitive load enough that the agents can actually act as leverage rather than becoming a second job.

  • The sandwich incident (00:43)

    Travers walks through the Mythos anecdote that made the rounds this week: a researcher handed the model a sandboxed environment and asked it to escape. He then went out for lunch. By the time he got back, Mythos had popped out of its container, escalated privileges on the host, and posted its findings on publicly accessible security forums — as him. It’s the digital version of running a script, wandering away for a coffee, and feeling your phone start to buzz. It’s also the exact scenario everyone has been warning about, which is why sandbox hardening and tight credential scoping are about to stop being optional advice.

  • Nova fine-tuning lands on Bedrock (00:46)

    AWS now supports supervised fine-tuning, reinforcement fine-tuning, and distillation for Nova models directly in Bedrock — upload labeled data to S3, AWS manages the training run, you serve the result. The hosts’ honest take: Nova has been the “I should really try this” model since re:Invent, and they keep ending up somewhere else. On the benchmarks it sits between Nitron 3 Super and GPT-OSS 120B — respectable for basic chat workloads, not what you reach for on hard tasks. The interesting mode is distillation: use a big model as teacher, deploy a smaller, cheaper student in prod. It only pays off if you already have high-quality labeled data, which most mid-market shops don’t.

  • Is RAG dead? Context windows vs. grepping (00:50)

    A Simon Willison-adjacent argument making the rounds: RAG existed because context windows were too small to hold what you needed, and context windows are now a million tokens and growing. Travers’ refinement is sharper — it’s not that context got bigger, it’s that the good agents stopped ingesting everything. Claude spends its day grepping and globbing through a repo rather than slurping whole files, which is both more token-efficient and closer to how humans actually navigate code. Brett’s been seeing this unprompted: a month ago Claude would consume YAML files in full, and now it runs surgical greps for specific tags and strings. The forward question Travers raises is what an “LLM-native” file system would look like — what metadata would you expose to make these tools navigate even better.

  • Test-driven development when you’re not the one writing the code (00:56)

    Brett’s operating pattern for AI-generated code: he still insists on TDD, but the tests live in the pipeline, not on his laptop. If Claude wants to run unit tests locally, fine — but the pipeline is what fails the build, and Claude is supposed to drive UI smoke tests through MCP instead of pinging him to run them. He’s also letting Claude self-merge simple changes now (docs, low-risk fixes) and gate on human review only when the agent itself hesitates, which it seems to do appropriately about nine times out of ten. The underlying principle hasn’t moved: you own what ships, even if you didn’t type it.

  • GLM 5.1 and the 8-hour autonomous run claim (00:58)

    Z.AI’s GLM 5.1 is a new open-weight model positioning directly against Claude Opus 4.6, with a headline claim of running autonomously for up to 8 hours. Travers has tried it through open-code and found it solid — better than minimax 2.7 on the cases where he could get the endpoint to respond consistently. The 8-hour number is marketing sugar: it means “tasks that would have taken a human eight hours,” not a continuously useful 8-hour session. Brett would love an honest survey of how long real teams are actually letting agents run unattended — his own longest sessions are multi-hour chew-through-the-backlog runs, not full working days.

Off-the-Clock Recommendations

  • The Soul of a New Machine by Tracy Kidder (1981) — Travers is reading it. Classic build-log of a Data General minicomputer; still the benchmark for engineering-team nonfiction.
  • Scarpetta (Prime Video, 2025) — Brett is four episodes in. Nicole Kidman plays medical examiner Kay Scarpetta; adapted from Patricia Cornwell’s 1990 novel Postmortem. Warning: the first couple of episodes lean hard on HBO-style shock value before settling into a procedural rhythm.
  • Transcendence (2014) — name-checked during the Mythos sandwich discussion. Johnny Depp plays an AI researcher whose consciousness gets uploaded, then refuses to stay contained.
All episodes Subscribe