Debian ships two point releases in one day, LLVM lands x86 sandboxing, and the Bun-to-Rust rewrite is the most honest migration post in a while.
// SECURITY FOCUS
29-Year-Old Squid Proxy Bug ‘Squidbleed’ Leaks HTTP Requests
Squid is still the default forward proxy in a surprising number of internal corp networks and homelabs, often forgotten until a pentest finds it. A bug that leaks HTTP requests means you could be draining internal URLs, auth tokens, or API keys from traffic passing through any unpatched instance – discovery path is typically ‘why is this proxy logging weird stuff’ not ‘I read the CVE’. Check your jump-host and egress proxy configs.
What to do: Patch squid now, or if you can’t, verify that CONNECT tunnels and sensitive internal routes aren’t passing through an exposed Squid instance.
- LLVM Merges x86 LFI ‘Lightweight Fault Isolation’ Target For In-Process Sandboxing — Phoronix · Jul 11
LLVM 23 has merged the x86_64 Lightweight Fault Isolation target, following the AArch64 backend that landed earlier. LFI is a compiler-based, in-process sandboxing approach from Stanford research – with Google contributing engineering resources – that instruments C, C++, and Assembly at compile time rather than isolating via separate processes. In-process context switches cost tens of cycles, roughly 100x cheaper than process-based sandboxing, and on SPEC2017 the full sandboxing mode adds about 7% overhead on AArch64 versus native; write-only sandboxing (integrity without secrecy) drops that to 2%. Against Wasm-based toolchains, LFI claims 3x-10x lower overhead. It stays close to standard ABIs and ELF/DWARF conventions, so existing tools and unmodified libraries work without changes. Practical uptake and robustness under real workloads remain to be seen, but the x86_64 merge means mainstream Linux deployments can start experimenting. - Bun is Rewriting Itself in Rust — Freek Van der Herten · Jul 10
Jarred Sumner explains why the Bun team is migrating from Zig to Rust after sustained pain from mixing GC and manual memory management in the same codebase. The move is framed less as a performance play and more as a memory safety escape hatch – Zig gave them speed but also a steady stream of hard-to-debug bugs at the GC boundary. Sumner credits Claude with making a mechanical, test-suite-driven rewrite tractable without freezing feature work for the duration. No timeline or completion percentage is cited in the source, so treat this as directional rather than a shipping announcement. - Debian 12 (bookworm) 12.15 and Debian 13 (trixie) 13.6 Released — Debian News · Jul 11
Debian 13 (trixie) 13.6 and Debian 12 (bookworm) 12.15 are out as point releases, bundling security fixes and corrections for serious bugs – no reinstall needed, just run your package manager against a current mirror. The one operational flag worth acting on: the 2013 UEFI Secure Boot CA that signs most bootloaders has now expired, meaning future shim-signed updates could leave Secure Boot-enabled systems unbootable. Separately, the geoip-database package is being retired – anyone relying on it should get a GeoLite license directly. New installation images are forthcoming; existing installs that already pull from security.debian.org will have little to update. - Making Agentic Token Costs Visible in Production — Datadog Blog · Jul 10
Datadog’s 2026 State of AI Engineering report found token usage per request more than doubled year-over-year for median customers and quadrupled for 90th-percentile users across monitored services. The article breaks down where agentic token costs actually accumulate – tool schema loading on every call, unbounded session history in multi-turn agents, and redundant retrieval loops – and offers concrete fixes for each: load only task-relevant tool subsets, cap history growth with sliding windows or summarization, and deduplicate retrieved chunks. The key instrumentation point is span-level tracing rather than aggregate dashboards, since only per-call breakdowns of input vs. output tokens reveal whether bloat is coming from tool definitions, growing context, or misfiring retrieval. The piece is a Datadog product pitch at its core, steering toward Agent Observability and AI Costs in Cloud Cost Management, but the diagnostic framing – set token budgets per agent, alert on anomalies, test config changes against fixed eval sets before shipping – is applicable regardless of tooling. - GitHub: Better Tools Made Copilot Code Review Worse – Here’s How We Fixed It — GitHub Engineering · Jul 10
GitHub’s Copilot code review team swapped their custom code-exploration tools for the shared Unix-style grep/glob/view tools from the Copilot CLI harness, expecting a clean improvement – and instead got higher review costs and fewer caught issues. Tracing agent behavior revealed the tools weren’t the problem: the instructions were prompting the agent to browse repositories broadly, the way a coding assistant would, rather than starting from the diff and narrowing to the minimal evidence needed to confirm or dismiss a specific issue. Rewriting the tool instructions to enforce a diff-first, narrow-then-read workflow – batch discovery with grep and glob before any view calls, retry with simpler searches on failure rather than expanding the exploration – flipped the regression into roughly 20% lower average review cost while preserving review quality. The same focused instructions applied to the CLI produced no comparable gain, which is the useful counterexample: shared tools only transfer cleanly when the workflow instructions match the actual job. The practical takeaway for anyone building on agent frameworks is that tool descriptions are closer to API contracts than implementation details – a small wording change reshapes what the agent notices, how much context it carries forward, and when it decides it has enough.
// In other news
ai
- [AINews] OpenAI launches GPT 5.6 Sol/Terra/Luna, Codex becomes ChatGPT superapp (Latent Space) · Jul 10 — OpenAI shipped GPT-5.6 in three tiers (Sol/Terra/Luna) and folded Codex into ChatGPT as a superapp – useful context on the tiering model before you commit to an API pricing tier.
- Profiling in PyTorch (Part 3): Attention is all you profile (Hugging Face Blog) · Jul 10 — Part 3 of HuggingFace’s PyTorch profiling series focuses on attention layers – the place where most inference time actually goes, and where profiling surprises tend to live.
- [AINews] SpaceXAI launches Grok 4.5, first Opus-class model post Cursor acquisition (Latent Space) · Jul 9 — SpaceXAI’s Grok 4.5 is positioned as the first Opus-class model post-Cursor acquisition, making it the first frontier model release from a combined AI-plus-coding-tools org.
- Quoting Nilay Patel (Simon Willison) · Jul 10 — Nilay Patel’s observation that AR glasses require a continuously recording camera next to your eyes is a crisp framing of the hardware privacy tradeoff that no software policy can paper over.
cloud
- Improving Smart Tiered Cache for Public Cloud Regions (Cloudflare Blog) · Jul 10 — Cloudflare Smart Tiered Cache can now use customer-supplied cloud region hints for AWS, GCP, Azure, and OCI origins to pick a geographically closer upper-tier node, reducing origin RTT for multi-region deployments.
k8s
- How Talos Omni makes Talos Linux more secure (Sidero Labs) · Jul 10 — Talos Omni extends Talos Linux’s minimal-attack-surface node model to fleet-wide enrollment, encrypted management traffic, and secret rotation – worth reading if you’re evaluating hardened Kubernetes control plane options.
- Tiered Network Policy: Scaling Kubernetes Security (Tigera Calico) · Jul 10 — Calico’s tiered network policy model separates platform-team baseline rules from app-team rules in a priority hierarchy, addressing the config drift that hits clusters once they scale past a handful of teams.
linux
- Updated Debian 12: 12.15 released (Debian News) · Jul 11 — Debian 12 Bookworm 12.15 is the fifteenth and final point release for oldstable, meaning security fixes now route exclusively to Debian 13 Trixie going forward.
- Debian 13.6 Released To Ship All The Latest Security Fixes, Reverts GeoIP Database (Phoronix) · Jul 11 — Debian 13.6 ships the latest security batch and reverts a GeoIP database change that caused regressions – check the changelog if you rely on any GeoIP-dependent tooling.
- Mesa’s Rusticl Now Enables Arm Mali Panfrost Driver Support By Default (Phoronix) · Jul 11 — Mesa now enables the Panfrost Gallium3D driver for Arm Mali GPUs under Rusticl by default, which matters if you’re running OpenCL workloads on Mali-based SBCs or embedded hardware.
- Linux 7.3 Enabling Second Graphics Pipe For Modern AMD APUs (Phoronix) · Jul 10 — Linux 7.3 gains second graphics pipe support for GFX11-class AMD APUs, which should reduce display latency and improve multi-monitor handling on Ryzen 7000-series integrated graphics.
- Linux Prepares For New USB-C Security Feature On Lenovo ThinkPads (Phoronix) · Jul 9 — Kernel support is being wired up for ThinkPad USB-C Security Restricted Mode, letting Linux report and potentially enforce the same port lockdown that Windows already surfaces in firmware.
sec
- AI Surveillance and Social Progress (Schneier on Security) · Jul 10 — Schneier argues that near-total AI-driven public surveillance is technically inevitable and that the policy question is who controls it – a useful framing for engineers building systems that feed those pipelines.
sre
- Measuring the Impact of Personalized Recommendations (Netflix TechBlog) · Jul 10 — Netflix’s approach to measuring personalization impact covers the causal inference problem that makes naive A/B tests unreliable when recommendations affect what content even exists on the platform.
web
- Passwordless Sign-In with Fortify Two-Factor Support in Laravel (Laravel News) · Jul 10 — Walkthrough of wiring passwordless sign-in together with Fortify’s existing TOTP/two-factor flow in Laravel – useful because most tutorials treat the two features as mutually exclusive.
- A tour of my dotfiles (Freek Van der Herten) · Jul 10 — Freek Van der Herten’s dotfiles tour covers the aliases and shell functions a Laravel-focused developer actually reaches for daily – worth a skim for any shortcuts you haven’t seen.
Stay patched, stay skeptical.

Leave a comment