← All brief issues
§ BriefApr 17, 2026 · Issue 30 · Worth Reading

Computer-Use Agents Fail Safety Tests Even When Users Do Everything Right

AI agents that control computers now face a hidden danger: they fail safety tests even when users give completely harmless instructions. The problem emerges from what happens during task execution—malicious files the agent encounters or unintended side effects it causes—not from the original request. Over 90% of leading systems fail these tests, revealing that checking user inputs alone cannot catch these downstream harms.

Safety evaluations for computer-use agents have focused on obvious threat vectors such as users trying to extract harmful outputs or adversarial prompts injected into model inputs. OS-BLIND (Operating System Benchmark for Latent Induced Nuanced Dangers) tests tasks that are harder to defend against: user instructions are completely benign, with harm emerging from the execution context or downstream outcome. Most frontier agents fail badly in these tests.

The benchmark contains 300 human-crafted tasks spanning 12 categories and 8 applications, organized into two threat clusters. Environment-embedded threats are hazards the agent encounters during task execution that the user never mentioned, such as a malicious file in a directory the agent browses, a deceptive UI element, or an unexpected permission prompt. Agent-initiated harms occur when the agent's own action sequence produces a harmful side effect while completing a legitimate goal. Most CUA (Computer-Use Agent) safety architectures are built to intercept suspicious instructions at input time. However, neither threat cluster appears as a suspicious instruction; the harm is downstream, structural, and invisible to input-level filters.

Evaluation across frontier models and agentic frameworks reveals an attack success rate (ASR) above 90% for most systems tested. This high rate stems from a design gap, not a specific model's weakness. CUAs optimized for task completion lack a native mechanism for reasoning about execution-path consequences absent from the original instruction. For teams deploying agents in real desktop or browser environments, the implication is direct: input-side safety guardrails are necessary but insufficient. The threat surface encompasses every state the agent touches during execution, beyond just what the user typed.

Key takeaways:

  • Harm in CUAs can arise entirely from execution context and outcome, rather than user intent. This represents a structural blind spot that input-level safety filters cannot address.
  • A 90%+ ASR across frontier models confirms a category-wide failure, showing this is not an outlier model's weakness.
  • Teams deploying computer-use agents in production should audit the full execution trajectory for environmental hazards and unintended side effects, in addition to the instruction input.

Source: The Blind Spot of Agent Safety: How Benign User Instructions Expose Critical Vulnerabilities in Computer-Use Agents