SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-10582

HIGH · CVSS 7.4 EPSS 0.32% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-24 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability allows an attacker to exploit Hugo's outbound fetch mechanism by supplying a URL through content fields, enabling the build process to fetch and embed responses from internal endpoints into the generated site. This can lead to the unintentional exposure of sensitive data, as the policy only inspects the URL text without resolving the hostname or validating the connection. Organizations using Hugo for static site generation should prioritize this issue to prevent potential data leaks and unauthorized access to internal resources.

Public Exploit Signal

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

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

CVE
CVE-2026-10582
Severity
HIGH
CVSS
7.4
EPSS
0.32%

Original NVD Description

Hugo's security.http.urls allowlist is the only control on outbound fetches made by resources.GetRemote, and it inspects the URL text alone. CheckAllowedHTTPURL in config/security/securityConfig.go applies the configured pattern list and then re-checks a canonicalised form of an integer, hex or octal IPv4 host, but it never resolves the hostname and never inspects the address the HTTP client actually connects to. The client constructed in resources/resource_factories/create/create.go installs no dial-time hook, so no check occurs at connection time either. A hostname that resolves to a loopback, private or cloud-metadata address therefore satisfies the policy, and the response body is embedded in the generated site. An attacker who can supply a URL through content, for example a front-matter field or a CMS field, can make the build fetch an internal endpoint and publish the response in the static output, so the build artifact itself carries the data out.