
CVE-2025-29927-Nextjs 분석 보고서
This repository contains a self-hosted Next.js lab environment created for analyzing CVE-2025-29927 in Docker.
CVE-2025-29927 is a vulnerability related to authorization checks implemented in Next.js middleware. This project was built as a local lab to observe middleware-protected route behavior in a controlled environment.
docs/images/poc.sh/admin routegit clone https://github.com/sangrok-jeon/CVE-2025-29927-Nextjs-Analysis.git
cd CVE-2025-29927-Nextjs-Analysis
cd JSR-next15
docker build -t nextjs .
docker run --rm -p 3000:3000 nextjs
Then open:
//adminchmod +x poc.sh
./poc.sh
If needed, you can pass a custom target URL:
./poc.sh http://localhost:3000/admin
docker compose -f JSR-next15/docker-compose.yml up -d --build
.
|-- JSR-next15/
| |-- Dockerfile
| |-- docker-compose.yml
| |-- middleware.js
| |-- package.json
| |-- package-lock.json
| |-- public/
| `-- src/
|-- docs/
| |-- CVE-2025-29927-Analysis-Report.md
| `-- images/
|-- poc.sh
`-- README.md
cd JSR-next15
docker build -t nextjs .
docker run --rm -p 3000:3000 nextjs
JSR-next15/ for middleware behavior validation.docs/.Created by JSR for security research and lab-based CVE analysis.
This repository is intended for authorized security research and educational purposes only. Do not use it against systems without explicit permission.