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
React2shell-CVE-2025-55182-checker | Kitploit
Tools/GitHubGitHub/oways/react2shell-cve-2025-55182-checker
Vulnerability ScannersVulnerability AnalysisCode AnalysisWeb SecurityDevSecOpsSupply Chain Security
GitHuboways/react2shell-cve-2025-55182-checker

React2shell-CVE-2025-55182-checker

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
28 months agoNot yet reviewed

CVE-2025-55182 React2Shell Detection Tool

Detection tools for finding vulnerable React Server Components in your infrastructure.

Quick Start

root@kitploit:~
# Install dependencies
pip3 install requests

# Version detection (passive, safe for production)
python3 checker.py -u https://your-app.com

What's Vulnerable

React Server Components:

  • react-server-dom-webpack 19.0.0 - 19.2.0
  • react-server-dom-turbopack 19.0.0 - 19.2.0

Next.js:

  • 15.0.0 - 15.0.4 (ships with vulnerable React)
  • 14.x and 13.5+ (if React 19 manually installed)

Fixed in:

  • React 19.2.1+
  • Next.js 15.0.5+

Tools

checker.py

Passive version detection. Safe to run on production without triggering alerts.

root@kitploit:~
# Single target
python3 checker.py -u https://app.example.com

# Multiple targets
python3 checker.py -l targets.txt -o results.json

# Verbose mode
python3 checker.py -u https://app.example.com -v

Checks for version strings in package.json, JavaScript bundles, HTTP headers, and API endpoints.

Nuclei Template

If you use Nuclei:

root@kitploit:~
# Version detection
nuclei -t CVE-2025-55182-react2shell.yaml -u https://app.example.com
nuclei -t CVE-2025-55182-react2shell.yaml -l targets.txt

Remediation

Update to patched versions:

root@kitploit:~
npm update react-server-dom-webpack@latest
npm update next@latest

Verify the fix:

root@kitploit:~
npm list react-server-dom-webpack next

Demo

Notes

The version detection tool is safe for production and won't trigger security alerts. Use it for initial discovery and continuous monitoring.

References

  • React Security Advisory
  • React Fix PR
  • CVE-2025-55182
Download Tool