CVE-2026-72783 is a desanitization flaw in Craft CMS's Local filesystem class where path normalization occurs AFTER containment validation, creating a gap where path traversal can escape volume boundaries. The vendor's characterization of this as 'not directly exploitable' conflates 'no discovered attack path' with 'no vulnerability' — the patch confirms the structural flaw exists regardless of whether an exploit chain currently exists. This is the same desanitization anti-pattern found in WordPress (2017), Drupal (2019), and Laravel (2020), where vendors initially used identical language ('theoretical,' 'hardening recommended') before subsequent research demonstrated practical exploitability 18-36 months later. The pattern is well-established: when normalization operates on a path that has already passed containment checks, the validated path and normalized path diverge, and that divergence is where volume escape occurs. The CVSS 6.2 score reflects high attack complexity and no demonstrated impact, but the desanitization pattern itself is the vulnerability — the question is whether CMS features (image transforms, asset uploads, template file access, plugin hooks) pass user-controlled paths through this function in a way that could trigger the escape. Audit the call graph of every code path touching ensurePathIsContained and treat this as a privilege-escalation surface rather than an entry point: the realistic attacker primitive needed is post-authentication filesystem access, which narrows the threat model but expands the chaining surface. The compounding risk is temporal — disclosure of the pattern itself lowers the exploit construction bar, and the usage surface expands as plugins are updated or new ones installed. Prioritize this patch not for its current exploitability but for its role as a reliable escalation primitive in post-authentication attack chains.