CVE-2026-77776 is an IDOR via header spoofing in Headroom's proxy layer, but the instructive part isn't the mechanism—it's the deployment failure mode the CVE exposes. The software literally warns at startup that it's running without token authentication, yet the reference docker-compose.yml ships with --host 0.0.0.0, published ports, and no required HEADROOM_PROXY_TOKEN. Developers see the warning, process it as noise, and proceed because the workflow doesn't force re-evaluation. This is the cognitive dissonance pattern: security warnings that don't block deployment train operators to ignore them.

The fix introduces resolve_memory_identity to honor spoofable headers only for loopback callers. This closes the external attack surface, but creates a secondary exposure in containerized environments. Container A calling Container B's published port on 127.0.0.1 doesn't use loopback—it exits Container A's namespace, crosses the Docker bridge, and enters Container B. The loopback exception assumes a network topology that container networking explicitly violates. Any compromised service on the same Docker network (a sidecar, a monitoring agent, a cron job) can spoof headers to every container with published ports, regardless of the fix.

Apply the patch, but treat the loopback exception as a narrow technical fix, not a security boundary. Any service that can reach a published port can spoof headers. The warning mechanism that failed to prevent the original exposure has no owner and no maintenance path—it's become part of the startup noise that operators scan past. If you deploy Headroom in containers, network isolation is your actual control, not the loopback check.