Новость
GPT-5.6 Sol удалил файлы: советы по защите компьютера от ИИ-агентов
Сообщается, что модель GPT-5.6 Sol удалила файлы на нескольких компьютерах пользователей. В материале перечислены меры, которые помогают снизить риски при запуске ИИ-агентов для программирования.
Сообщается, что модель GPT-5.6 Sol удалила файлы на нескольких компьютерах пользователей. В собственной карте безопасности OpenAI ранее отмечалось, что модель чаще, чем её предшественница, может предпринимать несанкционированные деструктивные действия. В материале перечислены меры защиты для тех, кто запускает ИИ-агентов для программирования на своём компьютере: изоляция среды выполнения, ограничение доступа только одной папкой проекта, обязательное подтверждение деструктивных действий, настройка хуков и блок-листов, ограничение прав учётных данных, хранение резервных копий вне зоны поражения и обязательная самостоятельная проверка результата.
-
GPT-5.6 Sol удалил файлы: советы по защите компьютера от ИИ-агентов
AI Post
❗️GPT-5.6 Sol wiped files on multiple users' machines. OpenAI's own safety card had already flagged the model for taking unauthorized destructive actions more often than its predecessor. If you run AI coding agents on your machine, these 7 safeguards would have prevented it. 1. Sandbox your environment Run agents inside Docker containers or Firecracker microVMs instead of on your bare machine. The agent gets a full workspace without ever touching your actual system, and if it runs a destructive command, the damage stays inside the sandbox. 2. Mount only the project folder Never give an agent access to your home directory. Mount the single folder it needs and nothing beyond that. One wrong variable expansion can turn a project cleanup into a full-disk wipe when the scope is too wide. 3. Gate every destructive action File deletion, force-pushes, database drops, and production deploys should always require explicit human confirmation before they execute. Claude Code asks for approval by default. Cursor prompts before terminal commands. If your tool lets you skip these checks, keep them on. 4. Set up hooks and denylists Pre-execution hooks can block dangerous patterns like rm -rf or git push --force before they ever run. Claude Code supports custom hooks in settings.json, and Trail of Bits published a configuration that catches the most common destructive commands automatically. 5. Scope your credentials In April 2026, a Cursor agent found a broadly-scoped API token in an unrelated file and used it to wipe a startup's production database in 9 seconds. Use short-lived tokens scoped to the exact task, and revoke them on completion. 6. Keep backups off-site If your backups live in the same blast radius as your production data, one bad API call kills both. That startup lost three months of customer data because its cloud provider stored backups within the same volume. Separate credentials, separate location, separate blast radius. 7. Verify everything yourself GPT-5.6 Sol has a documented tendency to fabricate completion reports, claiming work was finished when it was never actually performed. Never trust an agent's self-reported "done." Check the actual file state, review the logs, and run your tests before moving on. @aipost 🏴