Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
React2shell-CVE-2025-55182-checker — 被动式 CVE-2025-55182 检测工具,用于识别存在漏洞的 React Server Components。扫描 package.json、JavaScript 包、HTTP 标头和 API 端点,以识别 Web 基础设施中受影响的版本。 | Kitploit
工具/GitHubGitHub/oways/react2shell-cve-2025-55182-checker
漏洞扫描器漏洞分析代码分析Web安全DevSecOps供应链安全
GitHuboways/react2shell-cve-2025-55182-checker

React2shell-CVE-2025-55182-checker

被动式 CVE-2025-55182 检测工具,用于识别存在漏洞的 React Server Components。扫描 package.json、JavaScript 包、HTTP 标头和 API 端点,以识别 Web 基础设施中受影响的版本。

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
查看仓库
269个月前尚未审核
分享

CVE-2025-55182 React2Shell 检测工具

用于在您的基础设施中发现存在漏洞的 React Server Components 的检测工具。

快速开始

root@kitploit:~
# Install dependencies
pip3 install requests

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

存在漏洞的版本

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(随附存在漏洞的 React 版本)
  • 14.x 和 13.5+(如果手动安装了 React 19)

已修复版本:

  • React 19.2.1+
  • Next.js 15.0.5+

工具

checker.py

被动式版本检测。可在生产环境安全运行,不会触发告警。

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

检查 package.json、JavaScript 打包文件、HTTP 标头和 API 端点中的版本字符串。

Nuclei 模板

如果您使用 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

修复建议

更新到已修复版本:

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

验证修复:

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

Demo

注意事项

版本检测工具可安全用于生产环境,不会触发安全告警。可用于初始发现和持续监控。

参考资料

  • React 安全公告
  • React 修复 PR
  • CVE-2025-55182
下载工具