anthropics / anthropics/claude-code
Sandbox policy does not match settings.json: allowWrite glob refused, excludedCommands intermittently proxied
- 主要言語
- Python
- スター
- 145k
- フォーク
- 23.1k
- PR マージ指標
- PR 指標を取得中
説明
### Summary
The effective sandbox policy does not match `~/.claude/settings.json`. Two separate entries in that file are not in force, and one of them started working part-way through a single session without the file changing.
### Reproduction
`~/.claude/settings.json` contains:
```json
{
"sandbox": {
"enabled": true,
"excludedCommands": ["codeassembly *", "gh *"],
"filesystem": {
"allowWrite": ["~/repos/vaults/*-kb", "~/repos/vaults/*-kb.*"]
}
}
}
```
With that in place, in a sandboxed Bash tool call:
```
touch ~/repos/vaults/coding-kb/probe
```
fails with `Operation not permitted`, although `~/repos/vaults/*-kb` is listed under `sandbox.filesystem.allowWrite`. A plain-directory equivalent under an allow-listed path succeeds, so the glob entry specifically appears not to be honored.
### Second symptom, same session
`gh *` is listed under `sandbox.excludedCommands`, so `gh` should bypass the filtering proxy entirely. Twice in one session, `gh pr create` and `gh issue create` failed with:
```
Post "https://api.github.com/graphql": tls: failed to verify certificate: x509: OSStatus -26276
```
REST calls through the same binary (`gh api repos/OWNER/REPO/pulls --method POST`) succeeded at the same time, which is consistent with a filtering proxy allowing REST paths and refusing `/graphql`. About ten minutes later, in the same session with no configuration change, `gh pr create`-class commands (`gh pr list`, `gh pr view`, `gh api graphql`) all succeeded. The failure has not reproduced since, including under the compound-command and command-substitution shapes that originally triggered it.
### Notes
- `~/.claude/settings.json` was last modified 17 days before the session; it did not change during it.
- No `managed-settings.json`, no `managed-settings.d`, and no `policy-limits.json` exist on the machine, so nothing is overriding user settings from those layers.
- The sandbox policy description supplied to the model changed part-way through the session: its second form listed `~/repos/vaults/*-kb` paths under `allowWrite` that its first form did not, while the settings file was unchanged throughout. The vault write was refused both before and after that change.
### Impact
Sandbox settings cannot be relied on. A path declared writable is refused, and a command declared exempt from sandboxing is intermittently proxied, so an agent hits failures that the configuration says should not occur and cannot tell a policy error from a genuine one.
### Environment
- macOS 15 (Darwin 25.6.0), Claude Code CLI, `gh` 2.98.0.
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
Start by reproducing the allowWrite glob failure and the gh proxy behavior on macOS 15 with the shown settings.json, then compare the sandbox policy description before and after it changes. Trace how settings.json is loaded and how sandboxed Bash and excludedCommands are evaluated. Done means both glob writes and gh GraphQL commands consistently follow the configured policy without a configuration change.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- github, macos
- 領域
- cli, security
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 活発
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100