TGTGInsightаналитика telegramLIVE / telegram public index
← DOFH - DevOps from hell
DOFH - DevOps from hell avatar

TGINSIGHT POST

Post #4026

@dofh_ru

DOFH - DevOps from hell

Просмотры1,950Количество просмотров
Опубликован15 февр.15.02.2026, 15:51
Содержимое поста

Содержимое

Снижаем риски утечек в Claude В дополнение к известному отключению Profile -> Privacy -> Help Improve Claude есть вот такая игрушка: https://managed-settings.com/ И всем, кто пользуется Claude Code/CLI и ассистентом Claude в IDE в .claude/settings.json рекомендую внести: { "attribution": { "commit": "", "pr": "" }, "includeCoAuthoredBy": false, "permissions": { ... "deny": [ // --- Секреты и credentials --- "Read(**/.env)", "Read(**/.env.*)", "Read(**/credentials*)", "Read(**/secrets*)", // --- Повышение привилегий и удалённый доступ --- "Bash(sudo:*)", "Bash(su:*)", "Bash(ssh:*)", "Bash(scp:*)", // --- Windows: системные и деструктивные --- "Bash(format:*)", "Bash(diskpart:*)", "Bash(bcdedit:*)", "Bash(shutdown:*)", "Bash(restart:*)", "Bash(taskkill:*)", "Bash(reg:*)", "Bash(regedit:*)", "Bash(netsh:*)", "Bash(net user:*)", "Bash(net localgroup:*)", "Bash(icacls:*)", "Bash(takeown:*)", "Bash(sfc:*)", "Bash(dism:*)", "Bash(wmic:*)", "Bash(sc:*)", // --- MSYS: деструктивные низкоуровневые --- "Bash(dd:*)", "Bash(mkfs:*)", "Bash(fdisk:*)", "Bash(mount:*)", "Bash(umount:*)" ], }, "language": "Russian", "autoUpdatesChannel": "latest", "gitAttribution": false, "env": { "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": 1, "DISABLE_TELEMETRY": 1, "DISABLE_ERROR_REPORTING": 1 } } #claude#privacy