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.1.242 Home All releases olderv2.1.241 v2.1.243newer
Claude Code v2.1.242

Plugin HTTP calls are https-only and blocked from internal addresses

Not switched on
Useful3 Signal4
Plugins

Plugin network calls are https-only and blocked from internal and metadata addresses.

The plugin fetch capability with strict address blocking ships with the disabled hook-module feature.

What

The plugin fetch capability refuses anything but https, refuses URLs with embedded credentials, and blocks private, loopback, link-local, carrier-NAT, multicast and reserved addresses in both IPv4 and IPv6, cloud metadata endpoints, localhost / .local / .internal names, and Anthropic-operated hosts. Calls time out at 30000ms. It ships as part of the plugin hook-module feature, which is off unless the server enables it.

Details
  • Hostnames are resolved and the connection pinned to the resolved address; that pinning is skipped only when a proxy is configured and CLAUDE_CODE_PROXY_RESOLVES_HOSTS is set.
  • Redirects are capped, and a cross-origin redirect strips every header except accept, accept-language, content-type and user-agent.
  • Request and response bodies are size-capped.
  • Two policies refuse the call before any of this: sessions with nonessential network traffic disabled, and the plugin network policy check being off.
Evidence

network access from plugins is disabled by policy

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.242 →