Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-29927 — CVE-2025-29927 Proof of Concept | Kitploit
Tools/GitHubGitHub/aydinnyunus/cve-2025-29927
Authentication & AuthorizationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubaydinnyunus/cve-2025-29927

CVE-2025-29927

CVE-2025-29927 Proof of Concept

View Repository
1012831 year agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-29927: Next.js Middleware Bypass Vulnerability

This repository demonstrates the CVE-2025-29927 vulnerability in Next.js where the internal header x-middleware-subrequest can be used to bypass middleware checks like authentication.

Vulnerability Details

Next.js uses an internal header x-middleware-subrequest to prevent recursive requests from triggering infinite loops. The security vulnerability shows it's possible to skip running Middleware, which could allow requests to bypass critical checks—such as authorization cookie validation—before reaching routes.

Affected Versions

  • Next.js 15.x < 15.2.3
  • Next.js 14.x < 14.2.25
  • Next.js 13.x < 13.5.9

Impact Scope

Affected

  • Self-hosted Next.js applications using Middleware (next start with output: standalone)
  • Applications that rely on Middleware for auth or security checks, which are not then validated later in the application

Not Affected

  • Applications hosted on Vercel
  • Applications hosted on Netlify
  • Applications deployed as static exports (Middleware not executed)

Reproduction Steps

  1. Clone this repository
  2. Install dependencies: npm install
  3. Build the application: npm run build
  4. Start the application in production mode: node .next/standalone/server.js
  5. Test the vulnerability: node exploit-test.js

How the Exploit Works

The exploit adds the x-middleware-subrequest: middleware header to bypass Next.js middleware authentication checks.

image

The middleware in this demo app redirects unauthenticated users away from protected routes, but with the exploit header, this check can be bypassed.

image image

Fix

Update to one of the following patched versions:

  • Next.js 15.2.3 or higher
  • Next.js 14.2.25 or higher
  • Next.js 13.5.9 or higher

Source

  • https://nextjs.org/blog/cve-2025-29927
Download Tool