๐Ÿ” CVE Alert

CVE-2026-72860

HIGH 8.5

9router Server-Side Request Forgery via /api/provider-nodes/validate Because the IPv4-Mapped IPv6 Denylist Check Is Unreachable

CVSS Score
8.5
EPSS Score
0.0%
EPSS Percentile
0th

The POST /api/provider-nodes/validate route in 9router takes a caller-supplied baseUrl and issues server-side HTTP requests to it, guarding the destination with assertPublicUrl from src/shared/utils/ssrfGuard.js. That guard compares hostname strings only: it resolves no DNS, does not revalidate after a redirect, and its IPv4-mapped IPv6 branch is unreachable. The branch matches ^::ffff:(\d+\.\d+\.\d+\.\d+)$, but the WHATWG URL parser canonicalizes such literals to hextets before the guard runs, so new URL("http://[::ffff:127.0.0.1]/").hostname yields [::ffff:7f00:1] and the pattern is tested against a string it is never handed. Every IPv4-mapped address therefore passes, and http://[::ffff:7f00:1] and http://[::ffff:a9fe:a9fe] reach loopback and link-local metadata addresses; a hostname whose A record points at an internal address passes as well because no resolution occurs. In the custom-embedding branch the upstream response body is truncated to 200 bytes and returned to the caller whenever the upstream status is neither 2xx nor 401 nor 403, which discloses the beginning of internal responses, and the other validation types remain usable for blind internal port scanning through status and timing differences. The caller-supplied apiKey is forwarded to the internal destination as an Authorization Bearer header. A dashboard session is required by default, and none is required when requireLogin is disabled.

CWE CWE-918 CWE-184
Vendor decolua
Product 9router
Published Aug 20, 2026
Stay Ahead of the Next One

Get instant alerts for decolua 9router

Be the first to know when new high vulnerabilities affecting decolua 9router are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Changed
Confidentiality
High
Integrity
Low
Availability
None

Affected Versions

decolua / 9router
0 โ‰ค 0.5.55

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/decolua/9router/issues/3293 github.com: https://github.com/decolua/9router/blob/master/src/shared/utils/ssrfGuard.js github.com: https://github.com/decolua/9router/blob/master/src/app/api/provider-nodes/validate/route.js github.com: https://github.com/decolua/9router/pull/3370 github.com: https://github.com/decolua/9router vulncheck.com: https://www.vulncheck.com/advisories/9router-server-side-request-forgery-via-api-provider-nodes-validate-because-the-ipv4-mapped-ipv6-denylist-check-is-unreachable

Credits

๐Ÿ” HK4zCzi