AUGUST 14, 2026
Live Feed
Back to database
Case File

CVE-2026-73425

LOW · CVSS 3.7 EPSS 0.17% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-12 · Last synced 2026-08-14

CyberRota Analysis

AI-Generated

The Astro web framework's Netlify adapter prior to version 8.1.2 is vulnerable due to improper handling of regular expression metacharacters in image pathname values, which could allow unauthorized image optimization on paths that should be restricted. This could lead to unintended exposure or manipulation of images, impacting the integrity of content-driven websites. Developers and organizations using Astro with Netlify should prioritize upgrading to version 8.1.2 to mitigate this risk.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-73425
Severity
LOW
CVSS
3.7
EPSS
0.17%

Original NVD Description

Astro is a web framework for content-driven websites. Prior to 8.1.2, the Astro Netlify adapter converts each image.remotePatterns entry into a regular expression written to .netlify/v1/config.json under images.remote_images for Netlify's Image CDN allowlist. In packages/integrations/netlify/src/index.ts, remotePatternToRegex() escapes dots in hostname values but interpolates literal pathname values without escaping regular expression metacharacters such as ., +, ?, (, and [, so a restrictive pathname such as /img/v1.0/file also matches metacharacter-adjacent paths, including paths that cross a segment. Netlify enforces the generated regular expression directly and Astro's matchPattern() helper does not revalidate the request, allowing optimization of images on an already-allowed host that the declared pathname was intended to exclude. This issue is fixed in version 8.1.2.