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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2025-63499 — CVE-2025-63499 的 POC | Kitploit
工具/GitHubGitHub/poblaguev-tot/cve-2025-63499
漏洞分析漏洞利用Web应用程序漏洞利用Web安全渗透测试
GitHubpoblaguev-tot/cve-2025-63499

CVE-2025-63499

CVE-2025-63499 的 POC

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

主题参数中的定向反射型XSS漏洞

研究人员:Arseniy Poblaguev, Daniil Khomichenok

受影响版本 <= 5.12.4 ( https://github.com/Alinto/sogo/releases/tag/SOGo-5.12.4 )

日期:2025年12月2日


在 theme 参数中存在反射型 XSS 漏洞:

https://email.victim.com/SOGo/so/[email protected]/Mail/view?theme=%27%3CScRiPt%20%3Ealert%28%27XSS%5FTEST%27%29%3C%2FScRiPt%3E

要成功利用该漏洞,需要知道潜在受害者的电子邮件地址,并能够将 payload 发送给该特定受害者。这可以通过 smtp-user-enum 或信息收集来实现,只有在这种情况下漏洞才能被正确触发。同样重要的是,受害者必须拥有有效的 SOGO 会话。

包含注入的 theme 参数代码:

root@kitploit:~
- (NSString *) relativePathToUserFolderSubPath: (NSString *) _sub
{
  NSString *dst, *rel, *theme;

  dst = [[self userFolderPath] stringByAppendingPathComponent: _sub];
  rel = [dst urlPathRelativeToPath:[self ownPath]];

  theme = [[context request] formValueForKey: @"theme"];
  if ([theme length])
    rel = [NSString stringWithFormat: @"%@?theme=%@", rel, theme];

  return rel;
}

修复:https://github.com/Alinto/sogo/commit/16ab99e7cf8db2c30b211f0d5e338d7f9e3a9efb

下载工具