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 | Kitploit
Tools/GitHubGitHub/th-secforge/cve-2025-55182
Vulnerability ScannersExploitationWeb Application ExploitationWAF BypassPenetration TestingLearning & Education
GitHubth-secforge/cve-2025-55182

CVE-2025-55182

View Repository
8 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 Scanner

This repository contains a scanner tool for CVE-2025-55182, a critical Remote Code Execution (RCE) vulnerability in React Server Components (RSC).

⚠️ Disclaimer

This tool is for educational and authorized testing purposes only. Do not use this tool on systems you do not own or have explicit permission to test. The authors are not responsible for any misuse.

Analysis

For a detailed technical analysis, please refer to: https://react2shell.com/

Prerequisites

  • Python 3.x: Required to run the scanner.
  • Dependencies: Install via pip:
    root@kitploit:~
    pip3 install requests tqdm
    

Usage

Basic Scan

Check if a target URL is vulnerable.

root@kitploit:~
python3 CVE-2025-55182.py -u <url>

Scan Multiple Targets

scan a list of hosts from a file (one per line).

root@kitploit:~
python3 CVE-2025-55182.py -l <hosts_file>

Advanced Options

Safe Check

Use side-channel detection (timing/error based) instead of attempting RCE.

root@kitploit:~
python3 CVE-2025-55182.py -u <url> --safe-check

WAF Bypass

Add junk data to bypass WAF content inspection or use specific bypasses.

root@kitploit:~
# Standard WAF bypass (junk data)
python3 CVE-2025-55182.py -u <url> --waf-bypass --waf-bypass-size 128

# Vercel WAF bypass variant
python3 CVE-2025-55182.py -u <url> --vercel-waf-bypass

Output Options

Save results to a file in JSON, CSV, or HTML format.

root@kitploit:~
python3 CVE-2025-55182.py -u <url> -o results.json --format json

All Arguments

Download Tool
ArgumentDescription
-u, --urlSingle URL/host to check.
-l, --listFile containing list of hosts to scan.
-t, --threadsNumber of concurrent threads (default: 10).
--timeoutRequest timeout in seconds (default: 10).
-o, --outputOutput file for results.
--formatOutput format: json, csv, html.
--safe-checkUse safe side-channel detection instead of RCE PoC.
--windowsUse Windows PowerShell payload.
--waf-bypassAdd junk data to bypass WAF.
--vercel-waf-bypassUse Vercel WAF bypass payload.
--proxyProxy URL (e.g., http://127.0.0.1:8080).