The vulnerability, a Server-Side Request Forgery (SSRF), exists in the statamic/cms package within its Glide image processing integration. The root cause was improper validation of IP addresses in the Statamic\Imaging\RemoteUrlValidator class. Specifically, the assertPublicIp method did not account for IPv4-mapped IPv6 addresses. An attacker could provide a URL whose domain resolves to an internal IP address formatted in this way (e.g., ::ffff:127.0.0.1 for localhost). Before the patch, PHP's filter_var function, when used with the FILTER_FLAG_NO_PRIV_RANGE, would not correctly identify the un-normalized IPv6 address as being in a private range, thus bypassing the security check. This allowed an unauthenticated user to make the server issue requests to internal network addresses. The patch, identified in commit 3a0b3a05ab5f788fad4fa0af710d52510c56218e, rectifies this by adding a code block in assertPublicIp to detect and normalize these IPv4-mapped addresses to their standard IPv4 format before the filter_var validation is performed. The primary vulnerable function is Statamic\Imaging\RemoteUrlValidator::assertPublicIp, and its public-facing caller Statamic\Imaging\RemoteUrlValidator::validate would be the entry point seen during exploitation.