THE COLLECTION

Library

Everything you’ve found. Nothing you need to save twice.

6 articles
Browse at your own pace.
01
Google Project ZeroUNREAD

A 0-click exploit chain for the Pixel 10: When a Door Closes, a Window Opens

The article documents a zero-click-to-root exploit chain on Pixel 10: an updated Dolby decoder exploit (CVE-2025-54957) paired with a new VPU kernel driver flaw whose mmap handler maps unbounded physical memory, exposing the kernel image. The author credits Android's improved triage (High severity rating, 71-day fix) but argues the same vendor again shipped a shallow, easily found driver bug, so proactive driver security remains weak.

02
Google Project ZeroUNREAD

On the Effectiveness of Mutational Grammar Fuzzing

The author critiques mutational coverage-guided grammar fuzzing: coverage feedback misses semantic dependencies (e.g., bugs requiring chained function calls), and greedy corpus accumulation produces highly similar samples. The proposed fix is periodically restarting fuzz workers with empty corpora while syncing with a server holding accumulated coverage and samples, alternating independent generation with combined-corpus mutation. In week-long libxslt experiments this found more unique crashes faster than uninterrupted runs, though the optimal interval T was target-dependent.

03
Fly.ioUNREAD

Building Agents that Don't Break Themselves

The article argues that an AI agent's long-lived process (its 'home') and the sandbox where it executes model-generated commands should be separate environments. It presents two Fly.io case studies: SpriteDoc uses a throwaway sandbox per session with per-command credential injection, while Hermes Agent keeps a persistent per-task sandbox. Tradeoffs include lifecycle choice, idle cost (sandboxes go cold), and replacing approval prompts with sandbox isolation plus cheap checkpoint/restore rollback.

04
Fabien SanglardUNREAD

Quake Shareware, a CD-ROM just a little too full

A retrospective on id Software's 1996 Quake shareware CD-ROM, which bundled encrypted full versions of id games that buyers could unlock via a phone order system built by TestDrive Corp. The scheme relied on security by obscurity: the on-disc unlock program generated serial codes locally, so GNOMON cracked it in 39 days, aided by plaintext files and bugs. The experiment failed commercially, leaving id with ~150,000 unsold CDs.

05
hawksley.devUNREAD

I don't like passkeys

The article argues passkeys are technically strong—phishing-proof and breach-resistant—making them well-suited to enterprises, but a poor fit for individuals whose bigger risks are lockout, account bans, and device loss. It details pain points: hardware keys can't be backed up and have per-key credential limits, platform-synced passkeys tie you to Apple/Google accounts, export/interoperability is immature, and cross-device login is clunky. It recommends passwords in a third-party manager plus a separate TOTP app, except for habitual password reusers.

06
CloudflareUNREAD

When scanners miss the attack: how Cloudflare Client-Side Security protects storefronts

Cloudflare details four malicious JavaScript campaigns found on storefronts—affiliate-commission hijacking, clickless affiliate theft, a remote-code backdoor, and a paid-traffic cloaker—that VirusTotal and URLScan largely missed, arguing behavioral ML analysis beats signature scanning for gated, conditionally executing scripts. The detection pipeline combines a graph neural network, a lightweight LLM on Workers AI, and a weighted frontier-model voting ensemble with human review. It is a vendor post promoting Cloudflare Client-Side Security, so evidence is detailed but conclusions favor the product.