Advisory Database
  • Advisories
  • Dependency Scanning
  1. npm
  2. ›
  3. next
  4. ›
  5. CVE-2026-64645

CVE-2026-64645: Next.js: Server-Side Request Forgery in rewrites via attacker-controlled destination hostname

July 22, 2026

A rewrites() or redirects() rule that builds its external destination hostname from request-controlled input can be pointed at an arbitrary hostname, regardless of the rule’s hostname suffix. For a rewrite, Next.js proxies the request to that arbitrary host and serves the response from the application’s origin, leading to Server-Side Request forgery. A redirects() rule configured this way is vulnerable to an Open Redirect.

This affects any destination that puts a dynamic segment in the hostname, whether from the path:

// next.config.js
module.exports = {
async rewrites() {
return [
{
source: '/:tenant',
destination: 'https://:tenant.api.example.com',
},
]
},
}

or from a has capture:

// next.config.js
module.exports = {
async rewrites() {
return [
{
source: '/',
has: [{ type: 'query', key: 'region', value: '(?<region>.+)' }],
destination: 'https://:region.api.example.com',
},
]
},
}

References

  • github.com/advisories/GHSA-p9j2-gv94-2wf4
  • github.com/vercel/next.js/commit/35f501357e9b0fe7c950b0d6aa8fcf5343f707e9
  • github.com/vercel/next.js/commit/d3033266c6dff23f7be71e19341fe3a8c6e2c599
  • github.com/vercel/next.js/releases/tag/v15.5.21
  • github.com/vercel/next.js/releases/tag/v16.2.11
  • github.com/vercel/next.js/security/advisories/GHSA-p9j2-gv94-2wf4
  • nvd.nist.gov/vuln/detail/CVE-2026-64645

Code Behaviors & Features

Detect and mitigate CVE-2026-64645 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions starting from 12.0.0 before 15.5.21, all versions starting from 16.0.0 before 16.2.11

Fixed versions

  • 15.5.21
  • 16.2.11

Solution

Upgrade to versions 15.5.21, 16.2.11 or above.

Impact 9.3 CRITICAL

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:N

Learn more about CVSS

Weakness

  • CWE-918: Server-Side Request Forgery (SSRF)

Source file

npm/next/CVE-2026-64645.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Sat, 08 Aug 2026 00:17:17 +0000.