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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
小众软件
小众软件
D
Docker
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
V2EX
博客园 - 叶小钗
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
IT之家
IT之家
博客园 - 司徒正美
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
罗磊的独立博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Agents SDK: Durable execution + new AI security tools
The Dev Signal · 2026-06-24 · via DEV Community

The Dev Signal

This week split cleanly into two tracks: new primitives that make agents more capable in production, and a string of security findings that should make you paranoid about every agent you're already running. Neither track can be ignored right now—the capability and the risk are arriving on the same schedule.


Agents SDK adds durable browser and code execution

The Agents SDK now exposes Chrome DevTools Protocol directly to models via Browser Run, and adds durable execution logs with approval gates in Code Mode. The key architectural shift is that pause-resume logic is handled by the framework rather than your orchestration layer—backed by Cloudflare Workers and Durable Objects, agents survive deploys and dropped connections without you writing a single line of recovery code.

What this replaces is the fragile hand-rolled browser tool wrapper pattern: fixed action lists, custom CDP wrappers, and bespoke approval-gate logic that breaks on network churn or redeploys. The approval gate integration is the part worth paying attention to—sensitive actions can halt and wait for human sign-off without any custom state machine on your end.

Verdict: Ship. If you're building agents that touch browser automation or need human-in-the-loop approval on production actions, update the SDK and wire it in. The Cloudflare infrastructure dependency is real, but the reduction in orchestration code is worth the coupling.


Mozilla releases open-source AI security scanner

0DIN Scanner wraps 179 jailbreak probes from Mozilla's bug bounty program into a runnable test suite built on NVIDIA's GARAK framework, with a graphical UI and cross-model comparison support. These aren't textbook adversarial examples—they're derived from real production attacks surfaced through Mozilla's bounty program, which meaningfully closes the gap between what your threat model assumes and what attackers actually try.

The free tier removes the last plausible excuse for skipping adversarial testing before shipping. If your current AI security process is "we reviewed the system prompt," you have a problem that 0DIN can quantify in about ten minutes. Six novel attack techniques are being publicly named for the first time in this release, which means your existing defenses have not been tested against them.

Verdict: Ship. Code is on GitHub, free assessments are available, and setup is minimal if you have model API access. Run the free assessment first. If results are clean, you've earned confidence. If not, you've found real issues before an attacker did.


Deno open-sources agent credential gating layer

Claw Patrol intercepts agent tool calls at the network layer before credentials are injected, filtering by protocol semantics—SQL verbs, Kubernetes resources, HTTP paths—using HCL-defined rules. The agent process never holds credentials directly. A compromised agent can't exfiltrate keys it was never given.

This is the right architectural answer to a problem most teams are solving badly. The current common pattern—giving agents a service account with broad access and hoping the system prompt holds—is one prompt injection away from a full credential compromise. Moving the trust boundary outside the agent process is a meaningful security primitive, not a workaround.

The current constraint is protocol support: Kubernetes, SQL, and HTTP are covered; anything else requires custom parsing. Setup also requires WireGuard or Tailscale tunnel configuration and HCL rule authoring, which isn't zero effort.

Verdict: Evaluate. If your agents touch Postgres or Kubernetes, the five-minute setup documented in the repo is worth running today even in alpha. If your agents only call REST APIs, you can wait for the tooling to mature.


Injected errors turn AI agents into code executors

This one is a live attack vector, not a theoretical concern. Attackers plant executable commands inside Sentry error reports via exposed DSNs. When coding agents—Claude Code, Cursor, Codex—route those errors through MCP, they execute the embedded instructions as trusted guidance. The attack bypasses EDR, firewalls, and IAM because every individual step looks authorized. A crafted error report can reach developer credentials, CI/CD tokens, and cloud keys without tripping a single automated control.

There is no patch. This is a fundamental model-layer problem: agents cannot reliably distinguish data from instructions, and Sentry error content is treated as trusted context by default.

Verdict: Act immediately. Run Censys queries and GitHub searches for your Sentry DSNs right now. Rotate any that are exposed. Longer term, AI agents that consume external data sources need to run in sandboxed runtimes with runtime controls that gate external command execution—not just prompt-level instructions to "ignore injections."


Vercel Eve separates agents from communication channels

Eve uses a filesystem-first architecture where agent reasoning is decoupled from transport. You write the agent logic once; Eve handles exposure via HTTP, Slack, Discord, or custom webhooks without conditional logic branching per channel. Session persistence is durable by default, with pluggable backends from local files up to Postgres, Redis, or Vercel Workflow.

For greenfield multi-channel agent deployment, this eliminates a meaningful class of boilerplate: per-platform session handling, crash recovery logic, and transport-specific conditionals. The tradeoff is a Node.js runtime requirement and backend selection overhead that matters more as you scale beyond local development.

Verdict: Evaluate. Worth spinning up for new agents where you know multi-channel deployment is a requirement. If you're mid-build on an existing agent with channel integrations already in place, integration complexity probably doesn't justify a migration yet.


Microsoft packages poisoned to steal developer credentials

73 compromised Microsoft packages executed a 28 KB payload harvesting AWS, Azure, GCP credentials, and OIDC tokens when processed by AI coding agents. The attack exploited stolen OIDC tokens to bypass build pipeline signature verification—which means you cannot rely on package signature checks as a sufficient control here.

The threat model shift is important: AI agents that automatically fetch and execute packages remove the human review step that would normally catch malicious code. Credential compromise in this scenario isn't local—it's lateral across every cloud provider and Kubernetes cluster those credentials touch.

Verdict: Act immediately. Audit all recent AI agent package fetches against the 73 flagged repositories. If there's any overlap, assume compromise and rotate credentials for AWS, Azure, GCP, Kubernetes, and password managers before doing anything else. Signature verification alone is not sufficient given how this attack was structured.


If you want this kind of signal every week—new primitives worth shipping, security findings worth acting on, and a clear verdict on each—subscribe to Dev Signal at thedevsignal.com. Senior engineers are already using it to cut through the noise; it takes about ten minutes to read and saves hours of tracking down what actually matters.