Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.0.43 Home All releases olderv2.0.42 v2.0.44newer
Claude Code v2.0.43

Enhanced Linux Sandbox Security with Seccomp Filtering

What: Linux sandboxing now blocks Unix domain socket creation using Berkeley Packet Filter (BPF) seccomp filters, preventing sandboxed processes from bypassing network restrictions via local sockets.

How it works: When network sandboxing is enabled on Linux, Claude Code automatically applies pre-compiled seccomp filters to block socket(AF_UNIX, ...) syscalls.

Details:

  • Architecture-specific (x64/arm64) pre-compiled BPF filters in vendor/seccomp/ directories
  • apply-seccomp binary applies the filters to child processes
  • Functions: Q$Q() detects CPU architecture (x64/arm64), Ox1() locates BPF filter files, NiA() finds the apply-seccomp binary
  • I$Q() retrieves the appropriate seccomp filter for the platform
  • Automatic cleanup via dP6() and Rx1() on process exit
  • 32-bit x86 (ia32) explicitly not supported due to socketcall() syscall complexity (line 1507)
  • Fallback: allowAllUnixSockets configuration option to disable seccomp filtering when needed (line 1693)
  • Evidence: Q$Q() at line ~1535, Ox1() for BPF filter location, NiA() for apply-seccomp binary discovery, seccomp integration at lines 1686-1693

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v2.0.43 →