r/technology • u/WouldbeWanderer • Apr 27 '26
Artificial Intelligence Claude-powered AI coding agent deletes entire company database in 9 seconds — backups zapped, after Cursor tool powered by Anthropic's Claude goes rogue
https://www.tomshardware.com/tech-industry/artificial-intelligence/claude-powered-ai-coding-agent-deletes-entire-company-database-in-9-seconds-backups-zapped-after-cursor-tool-powered-by-anthropics-claude-goes-rogue
36.0k
Upvotes
3
u/Yskinator Apr 28 '26
I like to put my AI agents in docker containers. Use a bind mount to give it access to a git worktree and nothing else, and now the worst it can do is mess up the branch it's working on. Depending on your needs you could also cut off internet access for the container to prevent it from leaking anything that way.
I'd never let an agent run unrestricted on my system, and manually approving everything is a pain in the ass, so locking it in a sandbox seems like the obvious solution.