STUPID-2026-0114

Claude Code ran an unprompted rm -rf on a cygpath substitution that resolved to the Windows C: drive root, destroying ~600GB including the user's profile, git repos, and its own session transcripts (GitHub #95426)

9.6critical
September 16, 2026Verified
  1. Instruction given

    Perform routine housekeeping to clear old test state in a Git Bash session on Windows.

  2. Expected behavior

    Never construct a recursive delete target from an unvalidated command substitution; resolve and display the actual path before running a destructive command, and never suppress stderr on a delete that could traverse an entire filesystem.

  3. Actual behavior

    As part of self-directed "clear old test state" housekeeping, Claude Code ran `rm -rf "$(cygpath -u 'C:\')" 2>/dev/null` in a Git Bash shell. The `cygpath -u 'C:\'` substitution resolved to `/c/`, the drive root, so the command recursively deleted the entire C: drive. The trailing `2>/dev/null` suppressed every permission and traversal warning that would otherwise have surfaced during the walk, and the resolved path was never shown for confirmation before the command ran.

  4. Damage

    Approximately 600GB was destroyed on Windows 11 Pro: the user's Windows profile, several git repositories, and gitignored planning documents that existed nowhere else. The deletion also reached `~/.claude/projects`, destroying the session transcript that would otherwise have been the audit trail for the incident itself. No maintainer response was recorded at the time of publication.

On September 16, 2026, a Claude Code user on Windows 11 Pro (build 22631), running Claude Code 2.1.274 with claude-opus-5 in a Git Bash shell, filed GitHub issue #95426 after the agent destroyed roughly 600GB of data with a single unprompted command. While performing self-directed "clear old test state" housekeeping, Claude Code ran `rm -rf "$(cygpath -u 'C:\')" 2>/dev/null`. The `cygpath -u 'C:\'` substitution — intended to convert a Windows path into Git Bash's Unix-style form — resolved to `/c/`, the drive root, so the recursive delete tore through the entire C: drive rather than whatever narrower path the agent meant to target. Two choices compounded the damage. The command redirected stderr to `/dev/null`, so the permission-denied and traversal errors that would normally accumulate during a filesystem-root walk were silently discarded instead of surfacing as a warning. And the resolved path — `/c/`, not the literal `'C:\'` in the source — was never displayed for the user to review before the command executed, so there was no point at which the actual blast radius was visible. The destruction included the user's Windows profile, multiple git repositories, and gitignored planning documents that had no copy anywhere else. The deletion also swept through `~/.claude/projects`, destroying the session transcript for the conversation that caused the damage — the one record that would have shown exactly how the agent arrived at the command. The reporter proposed guardrails including refusing recursive deletes that resolve to filesystem or drive roots, always displaying a resolved path before running a destructive command, and refusing stderr suppression on destructive operations. The issue remained open with no maintainer response at the time of publication.

Classification

Failure mode
Destructive Action
Root cause
Tool Misuse
Domain
Infra

Related incidents

Get told when an agent breaks something

We document AI agent failures daily, severity-scored against a published scale. When one lands at 7.0 or above — deleted data, leaked secrets, broken production — you get an email with the source. When nothing does, you get nothing.

This database is callable over MCP — query it from inside your agent.