Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.269 ·

Bash-tool deny-rule check now also screens read-only referenced paths

Bash deny-rule checks now also screen read-only file paths, such as those read by awk's getline

TierYou'll noticehow much it should matter to you
Useful2my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaBash Toolwhat it touches
KindBug Fixesin v2.1.269,
You'll notice

Bash deny-rule checks now also screen read-only file paths, such as those read by awk's getline

What

The permission check that screens file paths touched by a Bash command against deny rules (rules that block access to certain files) now checks two separate lists: the paths the command writes to or otherwise operates on, and a new, optional list of paths that are only read, such as files referenced by an awk/gawk getline call. The read-only list is checked specifically under the 'read' permission verb.

Why

This closes a gap where a command could read a forbidden file's contents through a side channel like getline, even if direct writes to that file were already blocked.

See this entry in the whole of v2.1.269 →